Scrutinizer fixes
This commit is contained in:
parent
af95ac941f
commit
aedabd6eda
@ -2,7 +2,6 @@
|
||||
/**
|
||||
* Here begins everything!
|
||||
*/
|
||||
session_start();
|
||||
|
||||
// Work around the silly timezone error
|
||||
$timezone = ini_get('date.timezone');
|
||||
|
@ -11,6 +11,9 @@ use \Aviat\Ion\View\JsonView;
|
||||
|
||||
/**
|
||||
* Controller base, defines output methods
|
||||
*
|
||||
* @property Response object $response
|
||||
* @property Config object $config
|
||||
*/
|
||||
class Controller {
|
||||
|
||||
|
@ -102,8 +102,6 @@ class Manga extends Controller {
|
||||
? [$map[$status] => $this->model->get_list($map[$status])]
|
||||
: $this->model->get_all_lists();
|
||||
|
||||
//throw new \ErrorException("Data :" . print_r($data, TRUE));
|
||||
|
||||
$this->outputHTML('manga/' . $view_map[$view], [
|
||||
'title' => $title,
|
||||
'sections' => $data,
|
||||
|
@ -99,6 +99,8 @@ class Friend {
|
||||
$property->setAccessible(TRUE);
|
||||
return $property;
|
||||
}
|
||||
// Return NULL on any exception, so no further logic needed
|
||||
// in the catch block
|
||||
catch (\Exception $e) {}
|
||||
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user