This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Project\Services\Authentication; | |
// This file should reside in your project root's `src\Services` sub-directory | |
use Illuminate\Hashing\BcryptHasher; | |
use Psr\Log\LoggerInterface; | |
use Project\Repositories\UserRepository; | |
class AuthenticationService { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use DI\Container; | |
use DI\ContainerBuilder; | |
use Slim\App; | |
use Tuupola\JwtAuthentication; | |
$containerBuilder = new ContainerBuilder(); | |
$containerBuilder->addDefinitions([ | |
'JwtAuthenticationSettings' => [ | |
'secret' => getenv('jwt_secret'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILE: /mnt/c/Users/l0gicgate/Dropbox/Software/github/Slim/Slim/App.php | |
------------------------------------------------------------------------------------------------------------------------------------------------- | |
FOUND 4 ERRORS AFFECTING 4 LINES | |
------------------------------------------------------------------------------------------------------------------------------------------------- | |
65 | ERROR | @var annotation of property \Slim\App::$settings does not specify type hint for its items. | |
78 | ERROR | @param annotation of method \Slim\App::__construct() does not specify type hint for items of its traversable parameter $settings. | |
140 | ERROR | @return annotation of method \Slim\App::getSettings() does not specify type hint for items of its traversable return value. | |
162 | ERROR | @param annotation of method \Slim\App::addSettings() does not specify type hint for items of its traversable parameter $settings. | |
--------------------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createLocation } from 'history/LocationUtils'; | |
import { addLeadingSlash, stripTrailingSlash, stripBasename, createPath } from 'history/PathUtils'; | |
import { getConfirmation, supportsHistory, supportsPopStateOnHashChange, isExtraneousPopstateEvent } from 'history/DOMUtils'; | |
import createTransitionManager from './createTransitionManager'; | |
const PopStateEvent = 'popstate'; | |
const HashChangeEvent = 'hashchange'; | |
const getHistoryState = () => { | |
try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use FastRoute\Dispatcher; | |
use FastRoute\RouteParser; | |
use FastRoute\RouteParser\Std as StdParser; | |
use FastRoute\RouteCollector; | |
use FastRoute\DataGenerator\GroupCountBased as GroupCountBasedDataGenerator; | |
use Psr\Http\Message\RequestInterface; | |
use Slim\Route; | |
use Slim\Router; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as Rx from 'rxjs'; | |
import queryString from 'query-string'; | |
/** | |
* This function simply transforms any actions into an array of actions | |
* This enables us to use the synthax Observable.of(...actions) | |
* If an array is passed to this function it will be returned automatically instead | |
* Example: mapObservables({ type: ACTION_1 }) -> will return: [{ type: ACTION_1 }] | |
* Example2: mapObservables([{ type: ACTION_1 }, { type: ACTION_2 }]) -> will return: [{ type: ACTION_1 }, { type: ACTION_2 }] | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import Paper from 'material-ui/Paper'; | |
const panelStyle = { | |
width: '400px', | |
marginLeft: '42%', | |
marginRight: '50%', | |
} | |
class PaperPanel extends Component { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import ReactFlux from 'react-flux'; | |
import './index.css'; | |
import AppForm from './react-components/AppForm'; | |
import registerServiceWorker from './registerServiceWorker'; | |
import axios from 'axios'; | |
function getApplications() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import Hydrator from './Hydrator'; | |
import DataComponent from './DataComponent'; | |
const App = () => <Hydrator><DataComponent /></Hydrator>; | |
ReactDOM.render(<App />, 'app'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { defineMessages } from 'react-intl'; | |
import FormattedAnchor from './FormattedAnchor'; | |
const messages = defineMessages({ | |
menuItem: { | |
id: 'menu.item', | |
defaultMessage: 'Menu Item', | |
}, | |
menuItem1: { |