@@ -9,7 +9,7 @@ discard block |
||
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 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | // Make sure we are passing the fully qualified class name as the section |
67 | 67 | if (count($options->getSection()) > 0) { |
68 | 68 | $optionsArray = $options->toArray(); |
69 | - $optionsArray[ReadOptions::SECTION] = (string)$sectionConfig->getFullyQualifiedClassName(); |
|
69 | + $optionsArray[ReadOptions::SECTION] = (string) $sectionConfig->getFullyQualifiedClassName(); |
|
70 | 70 | $options = ReadOptions::fromArray($optionsArray); |
71 | 71 | } |
72 | 72 |