Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
parent
6e4e8edd9d
commit
7cdd79a116
@ -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,
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user