Completed
Pull Request — master (#87)
by Dion
03:44
created
src/FieldType/ValueObject/PreUpdateTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType\ValueObject;
15 15
 
Please login to merge, or discard this patch.
src/FieldType/ValueObject/EntityMethodsTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType\ValueObject;
15 15
 
Please login to merge, or discard this patch.
src/FieldType/ValueObject/DoctrineXmlFieldsTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType\ValueObject;
15 15
 
Please login to merge, or discard this patch.
src/FieldType/ValueObject/EntityPropertiesTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType\ValueObject;
15 15
 
Please login to merge, or discard this patch.
src/FieldType/ValueObject/PrePersistTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType\ValueObject;
15 15
 
Please login to merge, or discard this patch.
src/FieldType/FieldType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType;
15 15
 
Please login to merge, or discard this patch.
src/FieldType/FieldTypeInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\FieldType;
15 15
 
Please login to merge, or discard this patch.
src/SectionField/Service/DoctrineApplicationManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\SectionField\Service;
15 15
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $applicationRepository = $this->entityManager->getRepository(Application::class);
68 68
 
69 69
         /** @var $application Application */
70
-        $application = $applicationRepository->findOneBy(['handle' => (string)$handle]);
70
+        $application = $applicationRepository->findOneBy(['handle' => (string) $handle]);
71 71
 
72 72
         if (empty($application)) {
73 73
             throw new ApplicationNotFoundException();
Please login to merge, or discard this patch.
src/SectionField/Service/NotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare (strict_types = 1);
12
+declare(strict_types=1);
13 13
 
14 14
 namespace Tardigrades\SectionField\Service;
15 15
 
Please login to merge, or discard this patch.