Scrutinizer fixes

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

View File

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

View File

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

View File

@ -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,

View File

@ -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;