| Total Complexity | 4 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | abstract class BaseController |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var \WhispeakAuthPlugin |
||
| 19 | */ |
||
| 20 | protected $plugin; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * BaseController constructor. |
||
| 24 | */ |
||
| 25 | public function __construct() |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param bool $isFullPage |
||
| 32 | * |
||
| 33 | * @return mixed |
||
| 34 | */ |
||
| 35 | abstract protected function displayPage($isFullPage, array $variables); |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @throws \Exception |
||
| 39 | * |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | protected function uploadAudioFile(User $user) |
||
| 68 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.