Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer 2016-01-04 16:15:25 +00:00
parent 9c81836648
commit 8b528d8659
3 changed files with 10 additions and 10 deletions

View File

@ -127,7 +127,7 @@ class Controller {
* @param string|null $url
* @return void
*/
public function set_session_redirect($url=NULL)
public function set_session_redirect($url = NULL)
{
$anime_client = $this->container->get('anime-client');
$double_form_page = $this->request->server->get('HTTP_REFERER') == $this->request->url->get();
@ -317,7 +317,7 @@ class Controller {
* @param string $type
* @return void
*/
public function set_flash_message($message, $type="info")
public function set_flash_message($message, $type = "info")
{
$this->session->setFlash('message', [
'message_type' => $type,

View File

@ -120,9 +120,9 @@ class Anime extends BaseController {
$statuses = [];
foreach($raw_status_list as $status_item)
foreach ($raw_status_list as $status_item)
{
$statuses[$status_item] = (string) $this->string($status_item)
$statuses[$status_item] = (string)$this->string($status_item)
->underscored()
->humanize()
->titleize();
@ -171,16 +171,16 @@ class Anime extends BaseController {
* @param string $status
* @return void
*/
public function edit($id, $status="all")
public function edit($id, $status = "all")
{
$item = $this->model->get_library_anime($id, $status);
$raw_status_list = AnimeWatchingStatus::getConstList();
$statuses = [];
foreach($raw_status_list as $status_item)
foreach ($raw_status_list as $status_item)
{
$statuses[$status_item] = (string) $this->string($status_item)
$statuses[$status_item] = (string)$this->string($status_item)
->underscored()
->humanize()
->titleize();

View File

@ -50,7 +50,7 @@ abstract class View {
*
* @var boolean
*/
protected $hasRendered = false;
protected $hasRendered = FALSE;
/**
* Constructor
@ -81,7 +81,7 @@ abstract class View {
*/
public function __toString()
{
$this->hasRendered = true;
$this->hasRendered = TRUE;
return $this->getOutput();
}
@ -126,7 +126,7 @@ abstract class View {
*/
public function send()
{
$this->hasRendered = true;
$this->hasRendered = TRUE;
$this->output();
}