Completed
Push — master ( 640c4e...365a67 )
by
unknown
34s
created
src/SumoCoders/FrameworkUserBundle/Twig/UserExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
         return [
16 16
             new Twig_SimpleTest(
17 17
                 'admin',
18
-                function (BaseUser $user) {
18
+                function(BaseUser $user) {
19 19
                     return $user instanceof Admin;
20 20
                 }
21 21
             ),
22 22
             new Twig_SimpleTest(
23 23
                 'user',
24
-                function (BaseUser $user) {
24
+                function(BaseUser $user) {
25 25
                     return $user instanceof User;
26 26
                 }
27 27
             ),
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/Controller/DefaultController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
 
38 38
         // cache the result when we're in production environment
39 39
         if ($this->container->get('kernel')->getEnvironment() === 'prod') {
40
-            $webDir = $this->get('kernel')->getRootDir() . '/../web/';
40
+            $webDir = $this->get('kernel')->getRootDir().'/../web/';
41 41
             $fs = new Filesystem();
42 42
             $fs->dumpfile(
43
-                $webDir . $request->getLocale() . '/locale.json',
43
+                $webDir.$request->getLocale().'/locale.json',
44 44
                 json_encode($translations)
45 45
             );
46 46
         }
@@ -87,12 +87,12 @@  discard block
 block discarded – undo
87 87
         $dirs = [];
88 88
         foreach ($this->container->getParameter('kernel.bundles') as $bundle) {
89 89
             $reflection = new \ReflectionClass($bundle);
90
-            if (is_dir($dir = dirname($reflection->getFilename()) . '/Resources/translations')) {
90
+            if (is_dir($dir = dirname($reflection->getFilename()).'/Resources/translations')) {
91 91
                 $dirs[] = $dir;
92 92
             }
93 93
         }
94 94
 
95
-        if (is_dir($dir = $this->container->getParameter('kernel.root_dir') . '/Resources/translations')) {
95
+        if (is_dir($dir = $this->container->getParameter('kernel.root_dir').'/Resources/translations')) {
96 96
             $dirs[] = $dir;
97 97
         }
98 98
 
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/Form/Extension/DateTimeTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,6 +51,6 @@
 block discarded – undo
51 51
 
52 52
     private function convertToJsFormat(string $intlFormat): string
53 53
     {
54
-        return str_replace(['y', 'MM', 'dd', 'H', 'i'], ['YYYY','MM', 'DD', 'HH', 'mm'], $intlFormat);
54
+        return str_replace(['y', 'MM', 'dd', 'H', 'i'], ['YYYY', 'MM', 'DD', 'HH', 'mm'], $intlFormat);
55 55
     }
56 56
 }
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/Form/Extension/DateTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,6 @@
 block discarded – undo
52 52
 
53 53
     private function convertToJsFormat(string $intlFormat): string
54 54
     {
55
-        return str_replace(['y', 'MM', 'dd'], ['YYYY','MM', 'DD'], $intlFormat);
55
+        return str_replace(['y', 'MM', 'dd'], ['YYYY', 'MM', 'DD'], $intlFormat);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/Form/Type/ImageType.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         $builder
39 39
             ->addEventListener(
40 40
                 FormEvents::PRE_SET_DATA,
41
-                function (FormEvent $event) use ($options) {
41
+                function(FormEvent $event) use ($options) {
42 42
                     $imageIsEmpty = ($event->getData() === null || empty($event->getData()->getFileName()));
43 43
                     $required = $imageIsEmpty && $options['required'];
44 44
                     $fileFieldOptions = [
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
             )
59 59
             ->addModelTransformer(
60 60
                 new CallbackTransformer(
61
-                    function (AbstractImage $image = null) {
61
+                    function(AbstractImage $image = null) {
62 62
                         return $image;
63 63
                     },
64
-                    function ($image) use ($options) {
64
+                    function($image) use ($options) {
65 65
                         if (!$image instanceof AbstractImage && !$image instanceof stdClass) {
66 66
                             throw new TransformationFailedException('Invalid class for the image');
67 67
                         }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $resolver->setDefaults(
96 96
             [
97 97
                 'data_class' => AbstractImage::class,
98
-                'empty_data' => function () {
98
+                'empty_data' => function() {
99 99
                     return new class extends StdClass {
100 100
                         /** @var UploadedFile */
101 101
                         protected $file;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         }
170 170
 
171 171
         array_map(
172
-            function ($optionName) use ($options, &$view) {
172
+            function($optionName) use ($options, &$view) {
173 173
                 if (array_key_exists($optionName, $options) && !empty($options[$optionName])) {
174 174
                     $view->vars[$optionName] = $options[$optionName];
175 175
                 }
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/Form/Type/FileType.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         $builder
39 39
             ->addEventListener(
40 40
                 FormEvents::PRE_SET_DATA,
41
-                function (FormEvent $event) use ($options) {
41
+                function(FormEvent $event) use ($options) {
42 42
                     $fileIsEmpty = ($event->getData() === null || empty($event->getData()->getFileName()));
43 43
                     $required = $fileIsEmpty && $options['required'];
44 44
                     $fileFieldOptions = [
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
             )
59 59
             ->addModelTransformer(
60 60
                 new CallbackTransformer(
61
-                    function (AbstractFile $file = null) {
61
+                    function(AbstractFile $file = null) {
62 62
                         return $file;
63 63
                     },
64
-                    function ($file) use ($options) {
64
+                    function($file) use ($options) {
65 65
                         if (!$file instanceof AbstractFile && !$file instanceof stdClass) {
66 66
                             throw new TransformationFailedException('Invalid class for the file');
67 67
                         }
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                 'data_class' => AbstractFile::class,
98 98
                 'preview_label' => 'forms.labels.viewCurrentFile',
99 99
                 'remove_file_label' => 'forms.labels.removeFile',
100
-                'empty_data' => function () {
100
+                'empty_data' => function() {
101 101
                     return new class extends StdClass
102 102
                     {
103 103
                         /** @var UploadedFile */
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
             $view->vars['preview_url'] = $form->getData()->getWebPath();
170 170
         }
171 171
         array_map(
172
-            function ($optionName) use ($options, &$view) {
172
+            function($optionName) use ($options, &$view) {
173 173
                 if (array_key_exists($optionName, $options) && !empty($options[$optionName])) {
174 174
                     $view->vars[$optionName] = $options[$optionName];
175 175
                 }
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/Form/Type/OtherChoiceType.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             [
46 46
                 'label' => false,
47 47
                 'choice_loader' => new CallbackChoiceLoader(
48
-                    function () use ($category) : array {
48
+                    function() use ($category) : array {
49 49
                         $choices = (array) $this->repository->findBy(
50 50
                             ['category' => $category, 'locale' => $this->translator->getLocale()],
51 51
                             ['label' => 'ASC']
@@ -55,14 +55,14 @@  discard block
 block discarded – undo
55 55
                         return $choices;
56 56
                     }
57 57
                 ),
58
-                'choice_value' => function (OtherChoiceOption $choiceOption = null) : string {
58
+                'choice_value' => function(OtherChoiceOption $choiceOption = null) : string {
59 59
                     if ($choiceOption === null) {
60 60
                         return '';
61 61
                     }
62 62
 
63 63
                     return $choiceOption->getValue();
64 64
                 },
65
-                'choice_label' => function (OtherChoiceOption $choiceOption) : string {
65
+                'choice_label' => function(OtherChoiceOption $choiceOption) : string {
66 66
                     return (string) $choiceOption;
67 67
                 },
68 68
                 'placeholder' => $options['placeholder'],
@@ -81,13 +81,13 @@  discard block
 block discarded – undo
81 81
             ]
82 82
         )->addModelTransformer(
83 83
             new CallbackTransformer(
84
-                function (?OtherChoiceOption $selectedOption) : array {
84
+                function(?OtherChoiceOption $selectedOption) : array {
85 85
                     return [
86 86
                         'choices' => $selectedOption,
87 87
                         'other' => null,
88 88
                     ];
89 89
                 },
90
-                function (array $data) use ($options) : ?OtherChoiceOption {
90
+                function(array $data) use ($options) : ?OtherChoiceOption {
91 91
                     if ($data['choices'] === null) {
92 92
                         return null;
93 93
                     }
Please login to merge, or discard this patch.
src/SumoCoders/FrameworkCoreBundle/ValueObject/AbstractFile.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function getAbsolutePath(): ?string
56 56
     {
57
-        return $this->fileName === null ? null : $this->getUploadRootDir() . '/' . $this->fileName;
57
+        return $this->fileName === null ? null : $this->getUploadRootDir().'/'.$this->fileName;
58 58
     }
59 59
 
60 60
     public function getWebPath(): string
61 61
     {
62 62
         $file = $this->getAbsolutePath();
63 63
         if (is_file($file) && file_exists($file)) {
64
-            return '/files/' . $this->getUploadDir() . '/' . $this->fileName;
64
+            return '/files/'.$this->getUploadDir().'/'.$this->fileName;
65 65
         }
66 66
 
67 67
         return '';
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     protected function getUploadRootDir(): string
71 71
     {
72 72
         // the absolute directory path where uploaded documents should be saved
73
-        return __DIR__ . '/../../../../web/files/' . $this->getTrimmedUploadDir();
73
+        return __DIR__.'/../../../../web/files/'.$this->getTrimmedUploadDir();
74 74
     }
75 75
 
76 76
     protected function getTrimmedUploadDir(): string
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
         // do whatever you want to generate a unique name
145 145
         $filename = sha1(uniqid(mt_rand(), true));
146 146
         if ($this->namePrefix !== null) {
147
-            $filename = Urlizer::urlize($this->namePrefix) . '_' . $filename;
147
+            $filename = Urlizer::urlize($this->namePrefix).'_'.$filename;
148 148
         }
149
-        $this->fileName = $filename . '.' . $this->getFile()->guessExtension();
149
+        $this->fileName = $filename.'.'.$this->getFile()->guessExtension();
150 150
     }
151 151
 
152 152
     /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     protected function removeOldFile(): void
177 177
     {
178 178
         // delete the old file
179
-        $oldFile = $this->getUploadRootDir() . '/' . $this->oldFileName;
179
+        $oldFile = $this->getUploadRootDir().'/'.$this->oldFileName;
180 180
         if (is_file($oldFile) && file_exists($oldFile)) {
181 181
             unlink($oldFile);
182 182
         }
Please login to merge, or discard this patch.
FrameworkCoreBundle/Validator/UniqueDataTransferObjectValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function validate($dataTransferObject, Constraint $constraint): void
33 33
     {
34 34
         if (!$constraint instanceof UniqueDataTransferObject) {
35
-            throw new UnexpectedTypeException($constraint, __NAMESPACE__ . '\UniqueDataTransferObject');
35
+            throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\UniqueDataTransferObject');
36 36
         }
37 37
 
38 38
         if (!\is_array($constraint->fields) && !\is_string($constraint->fields)) {
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 
208 208
         array_walk(
209 209
             $identifiers,
210
-            function (&$id, $field) {
210
+            function(&$id, $field) {
211 211
                 if (!\is_object($id) || $id instanceof \DateTimeInterface) {
212 212
                     $idAsString = $this->formatValue($id, self::PRETTY_DATE);
213 213
                 } else {
Please login to merge, or discard this patch.