Completed
Push — master ( b5237d...8d344e )
by Thomas
02:21
created
src/Node/Condition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Thomas Klein, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree\Node;
9 9
 
Please login to merge, or discard this patch.
src/Node/AbstractNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Uniwax, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree\Node;
9 9
 
Please login to merge, or discard this patch.
src/DataSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Uniwax, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree;
9 9
 
Please login to merge, or discard this patch.
src/LogicTreeFacade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Thomas Klein, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree;
9 9
 
Please login to merge, or discard this patch.
src/Operator/Comparator/GtOperator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Thomas Klein, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree\Operator\Comparator;
9 9
 
Please login to merge, or discard this patch.
src/Operator/Logical/XnorOperator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Thomas Klein, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree\Operator\Logical;
9 9
 
Please login to merge, or discard this patch.
src/Service/ConditionManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Copyright © 2018 Thomas Klein, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree\Service;
9 9
 
Please login to merge, or discard this patch.
examples/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6 6
 
7
-require_once __DIR__.'/../autoloader.php';
7
+require_once __DIR__ . '/../autoloader.php';
8 8
 
9 9
 /**
10 10
  * Class CustomOperator
Please login to merge, or discard this patch.
autoloader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * @param string $class The fully-qualified class name.
9 9
  * @return void
10 10
  */
11
-spl_autoload_register(function ($class) {
11
+spl_autoload_register(function($class) {
12 12
 
13 13
     // project-specific namespace prefix
14 14
     $prefix = 'LogicTree\\';
Please login to merge, or discard this patch.