| 1 | <?php |
||
| 13 | class Manager extends BaseManager |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new manager instance. |
||
| 18 | * |
||
| 19 | * @param \Illuminate\Foundation\Application $app |
||
| 20 | * @return void |
||
|
|
|||
| 21 | */ |
||
| 22 | public function __construct($app = null) |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * Create Laravel driver |
||
| 30 | * |
||
| 31 | * @return \Humweb\Sociable\Auth\LaravelDriver |
||
| 32 | */ |
||
| 33 | protected function createLaravelDriver() |
||
| 37 | |||
| 38 | |||
| 39 | /** |
||
| 40 | * @return \Humweb\Sociable\Auth\SentinelDriver |
||
| 41 | */ |
||
| 42 | protected function createSentinelDriver() |
||
| 46 | |||
| 47 | |||
| 48 | /** |
||
| 49 | * Get the default driver name. |
||
| 50 | * |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function getDefaultDriver() |
||
| 57 | } |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.