Completed
Branch master (2af2d7)
by Kirill
07:06
created
Category
src/Presenter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\CarbonExtension;
11 11
 
Please login to merge, or discard this patch.
src/Extension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\CarbonExtension;
11 11
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @var string Path to graphql schema file
23 23
      */
24
-    private const GRAPHQL_DATETIME = __DIR__ . '/../resources/datetime.graphqls';
24
+    private const GRAPHQL_DATETIME = __DIR__.'/../resources/datetime.graphqls';
25 25
 
26 26
     /**
27 27
      * @param CompilerInterface $compiler
Please login to merge, or discard this patch.
src/Controller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\CarbonExtension;
11 11
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function format(InputInterface $input): string
26 26
     {
27
-        $format = \constant(Carbon::class . '::' . $input->get('format'));
27
+        $format = \constant(Carbon::class.'::'.$input->get('format'));
28 28
 
29 29
         return $this->getDateTime($input)->format($format);
30 30
     }
Please login to merge, or discard this patch.