Completed
Push — dependabot/npm_and_yarn/Bundle... ( 6e191e )
by
unknown
03:57
created
Bundle/CoreBundle/Annotations/ReceiverProperty.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
     /**
16 16
      * define supported types.
17 17
      *
18
-     * @param array $types supported types (text, media, date)
19 18
      **/
20 19
     public function __construct($data)
21 20
     {
Please login to merge, or discard this patch.
Bundle/CoreBundle/EventSubscriber/WidgetSubscriber.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Get SubscribedEvents.
43 43
      *
44
-     * @return array
44
+     * @return string[]
45 45
      */
46 46
     public function getSubscribedEvents()
47 47
     {
Please login to merge, or discard this patch.
Bundle/CoreBundle/Listener/BackendMenuListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      *
37 37
      * @param Event $event
38 38
      *
39
-     * @return Ambigous <\Knp\Menu\ItemInterface, NULL>
39
+     * @return \Knp\Menu\ItemInterface <\Knp\Menu\ItemInterface, NULL>
40 40
      */
41 41
     public function addGlobal(Event $event)
42 42
     {
Please login to merge, or discard this patch.
Bundle/WidgetBundle/Entity/Traits/StyleTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -432,7 +432,7 @@
 block discarded – undo
432 432
     /**
433 433
      * Set image.
434 434
      *
435
-     * @param string|Media $image
435
+     * @param Media $image
436 436
      *
437 437
      * @return $this
438 438
      */
Please login to merge, or discard this patch.
Bundle/CoreBundle/Annotations/Cache/Cache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function fetch($id)
42 42
     {
43
-        $id = $this->uniqId + '-' + $id;
43
+        $id = $this->uniqId + '-' +$id;
44 44
         if ($this->contains($id)) {
45 45
             return $this->cache->fetch($id);
46 46
         }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function save($id, $data)
60 60
     {
61
-        $id = $this->uniqId + '-' + $id;
61
+        $id = $this->uniqId + '-' +$id;
62 62
         if (!$this->apcIsEnabled()) {
63 63
             return false;
64 64
         }
Please login to merge, or discard this patch.
Bundle/MediaBundle/Entity/Folder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
             return $this->children;
297 297
         }
298 298
 
299
-        return $this->children->filter(function (Folder $entry) {
299
+        return $this->children->filter(function(Folder $entry) {
300 300
             if ($entry->isDeleted()) {
301 301
                 return false;
302 302
             }
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
             return $this->media;
365 365
         }
366 366
 
367
-        return $this->media->filter(function (Media $entry) {
367
+        return $this->media->filter(function(Media $entry) {
368 368
             if ($entry->isDeleted()) {
369 369
                 return false;
370 370
             }
Please login to merge, or discard this patch.
Bundle/MediaBundle/Entity/Media.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,11 +153,11 @@
 block discarded – undo
153 153
         if ($size < 1024) {
154 154
             return $size.'b';
155 155
         } else {
156
-            $help = $size / 1024;
156
+            $help = $size/1024;
157 157
             if ($help < 1024) {
158 158
                 return round($help, 1).'kb';
159 159
             } else {
160
-                return round(($help / 1024), 1).'mb';
160
+                return round(($help/1024), 1).'mb';
161 161
             }
162 162
         }
163 163
     }
Please login to merge, or discard this patch.
Bundle/TwigBundle/Repository/ErrorPageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         if (!$page && $deepMode) {
30 30
             // Check for a same family error
31 31
             // for example, for a 404 code, if the 404 error page doesn't exist, we check for a 400 errorPage
32
-            $page = $this->findOneByCode(floor($code / 100) * 100);
32
+            $page = $this->findOneByCode(floor($code/100)*100);
33 33
         }
34 34
 
35 35
         return $page;
Please login to merge, or discard this patch.
Bundle/WidgetBundle/Form/WidgetStyleType.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
                 'required' => false,
61 61
                 'mapped'   => false,
62 62
             ])
63
-            ->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
63
+            ->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) {
64 64
                 /*
65 65
                  * Generate form fields for each part of form
66 66
                  * Example, generate Static content, XS and SM as color forms
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
                         'data-refreshOnChange' => 'true',
119 119
                     ],
120 120
                 ])
121
-                ->get('containerBackgroundType'.$key)->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($key) {
121
+                ->get('containerBackgroundType'.$key)->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($key) {
122 122
                     self::generateBackgroundFields($event->getForm()->getParent(), $key, $event->getData());
123 123
                 });
124 124
         }
125 125
 
126 126
         // add theme field
127
-        $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
127
+        $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) {
128 128
             $data = $event->getData();
129 129
             $form = $event->getForm();
130 130
             //guess the bundle name
Please login to merge, or discard this patch.
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -242,6 +242,7 @@
 block discarded – undo
242 242
      * Get the bundle name from an Entity namespace.
243 243
      *
244 244
      * @param string $entityNamespace
245
+     * @param \Symfony\Component\HttpKernel\Bundle\BundleInterface[] $bundles
245 246
      *
246 247
      * @return string
247 248
      *
Please login to merge, or discard this patch.