explicitely set script_types=1

This commit is contained in:
Dominik Liebler 2019-08-17 21:58:04 +02:00
parent 2f28ceb948
commit de5c0c929c
No known key found for this signature in database
GPG Key ID: DCE4AADEA26FD47B
167 changed files with 198 additions and 49 deletions

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\ChainOfResponsibilities;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\ChainOfResponsibilities\Tests;

View File

@ -1,36 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<Diagram>
<ID>PHP</ID>
<OriginalElement>\DesignPatterns\Behavioral\ChainOfResponsibilities\Handler</OriginalElement>
<nodes>
<node x="54.5" y="0.0">\DesignPatterns\Behavioral\ChainOfResponsibilities\Handler</node>
<node x="0.0" y="158.0">\DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible\SlowStorage</node>
<node x="154.0" y="158.0">\DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible\FastStorage</node>
<node x="304.0" y="45.0">\DesignPatterns\Behavioral\ChainOfResponsibilities\Request</node>
</nodes>
<notes />
<edges>
<edge source="\DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible\SlowStorage" target="\DesignPatterns\Behavioral\ChainOfResponsibilities\Handler">
<point x="0.0" y="-44.5" />
<point x="67.0" y="133.0" />
<point x="99.25" y="133.0" />
<point x="-44.75" y="54.0" />
</edge>
<edge source="\DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible\FastStorage" target="\DesignPatterns\Behavioral\ChainOfResponsibilities\Handler">
<point x="0.0" y="-44.5" />
<point x="221.0" y="133.0" />
<point x="188.75" y="133.0" />
<point x="44.75" y="54.0" />
</edge>
</edges>
<settings layout="Hierarchic Group" zoom="1.0" x="188.0" y="123.5" />
<SelectedNodes />
<Categories>
<Category>Fields</Category>
<Category>Constants</Category>
<Category>Constructors</Category>
<Category>Methods</Category>
</Categories>
<VISIBILITY>private</VISIBILITY>
</Diagram>
<?xml version="1.0" encoding="UTF-8"?>
<Diagram>
<ID>PHP</ID>
<OriginalElement>\DesignPatterns\Behavioral\ChainOfResponsibilities\Handler</OriginalElement>
<nodes>
<node x="0.0" y="0.0">\DesignPatterns\Behavioral\ChainOfResponsibilities\Handler</node>
</nodes>
<notes />
<edges />
<settings layout="Hierarchic Group" zoom="1.0" x="537.5" y="338.0" />
<SelectedNodes />
<Categories>
<Category>Fields</Category>
<Category>Constants</Category>
<Category>Constructors</Category>
<Category>Methods</Category>
</Categories>
<VISIBILITY>private</VISIBILITY>
</Diagram>

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Iterator;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Iterator;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Iterator\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Mediator;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Mediator;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Mediator;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Mediator\Subsystem;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Mediator\Subsystem;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Mediator\Subsystem;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Tests\Mediator\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Memento;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Memento;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Memento\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Memento;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\NullObject;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\NullObject;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\NullObject;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\NullObject;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\NullObject\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Observer\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Observer;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Observer;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\State;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\State;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\State;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\State;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\State;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\State\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Strategy;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Strategy;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Strategy;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Strategy;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Strategy\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\TemplateMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\TemplateMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\TemplateMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\TemplateMethod\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Visitor;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Visitor;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Visitor;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Visitor;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Tests\Visitor\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Visitor;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\AbstractFactory;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\AbstractFactory;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\AbstractFactory;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\AbstractFactory;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\AbstractFactory\Tests;

View File

@ -3,27 +3,27 @@
<ID>PHP</ID>
<OriginalElement>\DesignPatterns\Creational\AbstractFactory\DigitalProduct</OriginalElement>
<nodes>
<node x="0.0" y="112.0">\DesignPatterns\Creational\AbstractFactory\DigitalProduct</node>
<node x="0.0" y="265.0">\DesignPatterns\Creational\AbstractFactory\ProductFactory</node>
<node x="204.0" y="101.0">\DesignPatterns\Creational\AbstractFactory\ShippableProduct</node>
<node x="147.5" y="0.0">\DesignPatterns\Creational\AbstractFactory\Product</node>
<node x="0.0" y="109.0">\DesignPatterns\Creational\AbstractFactory\DigitalProduct</node>
<node x="0.0" y="259.0">\DesignPatterns\Creational\AbstractFactory\ProductFactory</node>
<node x="166.0" y="98.0">\DesignPatterns\Creational\AbstractFactory\ShippableProduct</node>
<node x="128.5" y="0.0">\DesignPatterns\Creational\AbstractFactory\Product</node>
</nodes>
<notes />
<edges>
<edge source="\DesignPatterns\Creational\AbstractFactory\ShippableProduct" target="\DesignPatterns\Creational\AbstractFactory\Product">
<point x="0.0" y="-59.5" />
<point x="369.0" y="76.0" />
<point x="272.0" y="76.0" />
<point x="41.5" y="25.5" />
<point x="0.0" y="-58.0" />
<point x="312.0" y="73.0" />
<point x="224.5" y="73.0" />
<point x="32.0" y="24.0" />
</edge>
<edge source="\DesignPatterns\Creational\AbstractFactory\DigitalProduct" target="\DesignPatterns\Creational\AbstractFactory\Product">
<point x="0.0" y="-48.5" />
<point x="92.0" y="76.0" />
<point x="189.0" y="76.0" />
<point x="-41.5" y="25.5" />
<point x="0.0" y="-47.0" />
<point x="73.0" y="73.0" />
<point x="160.5" y="73.0" />
<point x="-32.0" y="24.0" />
</edge>
</edges>
<settings layout="Hierarchic Group" zoom="1.0" x="140.0" y="91.0" />
<settings layout="Hierarchic Group" zoom="1.0" x="537.5" y="256.0" />
<SelectedNodes />
<Categories>
<Category>Fields</Category>

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Parts;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Parts;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Parts;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Parts;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Parts;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Parts;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Builder;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\FactoryMethod\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Multiton;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Multition\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Pool;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Pool\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Pool;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Prototype;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Prototype;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Prototype;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Prototype\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\SimpleFactory;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\SimpleFactory;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\SimpleFactory\Tests;

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Creational\Singleton;

Some files were not shown because too many files have changed in this diff Show More