php cs fixer

This commit is contained in:
Dennis Eichhorn 2019-04-27 12:05:33 +02:00
parent 91f5cd5684
commit 80ccaecbfd
7 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
use Modules\Kanban\Controller\BackendController;
use Modules\Kanban\Models\PermissionState;

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
/**
* Orange Management
*

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
/**
* Orange Management
*

View File

@ -1,2 +1,2 @@
<?php
echo $this->getData('nav')->render();
<?php declare(strict_types=1);
echo $this->getData('nav')->render();

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
$board = $this->getData('board');
$columns = $board->getColumns();
// todo: column width should be % but with min-width and on small screens full width

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
$card = $this->getData('card');
$comments = $card->getComments();
?>

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
$boards = $this->getData('boards');
echo $this->getData('nav')->render(); ?>