This file contains 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 App\Libs\VK\Laravel; | |
use Illuminate\Support\ServiceProvider; | |
class VKServiceProvider extends ServiceProvider | |
{ | |
public function register() | |
{ |
This file contains 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 App\Providers; | |
use Illuminate\Contracts\Hashing\Hasher; | |
use Illuminate\Contracts\Auth\UserProvider; | |
use Illuminate\Contracts\Auth\Authenticatable; | |
class CachedEloquentUserProvider implements UserProvider { | |
protected $hasher; | |
protected $model; |
This file contains 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 App\Libs\Helper; | |
use Jenssegers\Date\Date; | |
class Helper { | |
/** | |
* Get Date | |
*/ | |
public static function getDate($date) |