Scrutinizer fixes

This commit is contained in:
Timothy Warren 2015-10-06 10:44:33 -04:00
parent 7269c5c393
commit dbbea163d1
4 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,6 @@
/** /**
* Here begins everything! * Here begins everything!
*/ */
session_start();
// Work around the silly timezone error // Work around the silly timezone error
$timezone = ini_get('date.timezone'); $timezone = ini_get('date.timezone');

View File

@ -11,6 +11,9 @@ use \Aviat\Ion\View\JsonView;
/** /**
* Controller base, defines output methods * Controller base, defines output methods
*
* @property Response object $response
* @property Config object $config
*/ */
class Controller { class Controller {

View File

@ -102,8 +102,6 @@ class Manga extends Controller {
? [$map[$status] => $this->model->get_list($map[$status])] ? [$map[$status] => $this->model->get_list($map[$status])]
: $this->model->get_all_lists(); : $this->model->get_all_lists();
//throw new \ErrorException("Data :" . print_r($data, TRUE));
$this->outputHTML('manga/' . $view_map[$view], [ $this->outputHTML('manga/' . $view_map[$view], [
'title' => $title, 'title' => $title,
'sections' => $data, 'sections' => $data,

View File

@ -99,6 +99,8 @@ class Friend {
$property->setAccessible(TRUE); $property->setAccessible(TRUE);
return $property; return $property;
} }
// Return NULL on any exception, so no further logic needed
// in the catch block
catch (\Exception $e) {} catch (\Exception $e) {}
return NULL; return NULL;