Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Oct 5, 2018
1 parent 70e12b6 commit 6501db7
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 1 deletion.
1 change: 1 addition & 0 deletions CD-collection/app/bootstrap.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


use Nette\Application\Routers\Route; use Nette\Application\Routers\Route;
Expand Down
1 change: 1 addition & 0 deletions CD-collection/app/model/AlbumRepository.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Model; namespace App\Model;
Expand Down
1 change: 1 addition & 0 deletions CD-collection/app/model/Authenticator.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Model; namespace App\Model;
Expand Down
1 change: 1 addition & 0 deletions CD-collection/app/presenters/DashboardPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions CD-collection/app/presenters/SignPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions CD-collection/www/index.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


// let bootstrap create Dependency Injection container // let bootstrap create Dependency Injection container
Expand Down
1 change: 1 addition & 0 deletions Fifteen/app/bootstrap.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


use Nette\Application\Routers\SimpleRouter; use Nette\Application\Routers\SimpleRouter;
Expand Down
2 changes: 1 addition & 1 deletion Fifteen/app/components/FifteenControl.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


use Nette\Application\UI; use Nette\Application\UI;
Expand Down Expand Up @@ -26,7 +27,6 @@ class FifteenControl extends UI\Control


public function __construct() public function __construct()
{ {
parent::__construct();
$this->order = range(0, $this->width * $this->width - 1); $this->order = range(0, $this->width * $this->width - 1);
} }


Expand Down
1 change: 1 addition & 0 deletions Fifteen/app/presenters/DefaultPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);




Expand Down
1 change: 1 addition & 0 deletions Fifteen/www/index.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


// let bootstrap create Dependency Injection container // let bootstrap create Dependency Injection container
Expand Down
1 change: 1 addition & 0 deletions Micro-blog/www/data/TemplateRouter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


use Nette\Application\Routers; use Nette\Application\Routers;
Expand Down
1 change: 1 addition & 0 deletions Micro-blog/www/index.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


// Nette Framework Microblog example // Nette Framework Microblog example
Expand Down
1 change: 1 addition & 0 deletions Modules-Usage/app/bootstrap.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


use Nette\Application\Routers\Route; use Nette\Application\Routers\Route;
Expand Down
1 change: 1 addition & 0 deletions Modules-Usage/app/modules/Admin/DefaultPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace DemoApp\Module\Admin\Presenters; namespace DemoApp\Module\Admin\Presenters;
Expand Down
1 change: 1 addition & 0 deletions Modules-Usage/app/modules/Base/BasePresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace DemoApp\Module\Base\Presenters; namespace DemoApp\Module\Base\Presenters;
Expand Down
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace DemoApp\Module\Front\Export\Presenters; namespace DemoApp\Module\Front\Export\Presenters;
Expand Down
1 change: 1 addition & 0 deletions Modules-Usage/app/modules/Front/CatalogListPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace DemoApp\Module\Front\Presenters; namespace DemoApp\Module\Front\Presenters;
Expand Down
1 change: 1 addition & 0 deletions Modules-Usage/app/modules/Front/DefaultPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace DemoApp\Module\Front\Presenters; namespace DemoApp\Module\Front\Presenters;
Expand Down
1 change: 1 addition & 0 deletions Modules-Usage/www/index.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


// let bootstrap create Dependency Injection container // let bootstrap create Dependency Injection container
Expand Down

0 comments on commit 6501db7

Please sign in to comment.