Completed
Push — master ( 506871...64c991 )
by Eric
35:28 queued 30:18
created
src/Bundle/GridBundle/Behat/Context/GridApiContext.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     }
111 111
 
112 112
     /**
113
-     * @param $format
113
+     * @param string $format
114 114
      *
115 115
      * @return array|mixed
116 116
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
      */
102 102
     private function decodeByProperty($property, $format)
103 103
     {
104
-        return array_map(function ($entry) use ($property) {
104
+        return array_map(function($entry) use ($property) {
105 105
             \PHPUnit_Framework_Assert::assertInternalType('array', $entry);
106 106
             \PHPUnit_Framework_Assert::assertArrayHasKey($property, $entry);
107 107
 
Please login to merge, or discard this patch.
src/Bundle/GridBundle/Behat/Context/GridWebContext.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @param string|int $header
59
+     * @param string $header
60 60
      * @param string     $sorting
61 61
      */
62 62
     public function followSortingLink($header, $sorting)
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-     * @param string|int $header
124
+     * @param integer $header
125 125
      * @param string     $value
126 126
      */
127 127
     public function assertHeader($header, $value)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
     {
215 215
         $index = $this->findHeaderIndex($header);
216 216
 
217
-        $values = $sortedValues = array_map(function (NodeElement $node) {
217
+        $values = $sortedValues = array_map(function(NodeElement $node) {
218 218
             return $node->getText();
219 219
         }, $this->findCell(null, $index));
220 220
 
Please login to merge, or discard this patch.
src/Bundle/LocaleBundle/Tests/EventSubscriber/MenuSubscriberTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     }
108 108
 
109 109
     /**
110
-     * @return \PHPUnit_Framework_MockObject_MockObject|MenuBuilderEvent
110
+     * @return MenuBuilderEvent
111 111
      */
112 112
     private function createMenuBuilderEventMock()
113 113
     {
Please login to merge, or discard this patch.
src/Bundle/RegistryBundle/Tests/LugRegistryBundleTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @return ContainerBuilder|\PHPUnit_Framework_MockObject_MockObject
54
+     * @return ContainerBuilder
55 55
      */
56 56
     private function createContainerMock()
57 57
     {
Please login to merge, or discard this patch.
EventSubscriber/Doctrine/MongoDB/ResolveTargetDocumentSubscriber.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -39,6 +39,8 @@
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * {@inheritdoc}
42
+     * @param string $originalDocument
43
+     * @param string $newDocument
42 44
      */
43 45
     public function addResolveTargetDocument($originalDocument, $newDocument, array $mapping)
44 46
     {
Please login to merge, or discard this patch.
EventSubscriber/Doctrine/ORM/ResolveTargetEntitySubscriber.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -37,6 +37,8 @@
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * {@inheritdoc}
40
+     * @param string $originalEntity
41
+     * @param string $newEntity
40 42
      */
41 43
     public function addResolveTargetEntity($originalEntity, $newEntity, array $mapping)
42 44
     {
Please login to merge, or discard this patch.
src/Bundle/ResourceBundle/Form/FormFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param string|FormTypeInterface|ResourceInterface $type
47
-     * @param mixed                                      $data
48
-     * @param mixed[]                                    $options
47
+     * @param string                                      $data
48
+     * @param string[]                                    $options
49 49
      *
50 50
      * @return FormInterface
51 51
      */
Please login to merge, or discard this patch.
src/Bundle/ResourceBundle/Tests/EventListener/FlashListenerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     }
111 111
 
112 112
     /**
113
-     * @return \PHPUnit_Framework_MockObject_MockObject|DomainEvent
113
+     * @return DomainEvent
114 114
      */
115 115
     private function createDomainEventMock()
116 116
     {
Please login to merge, or discard this patch.
Tests/EventSubscriber/Doctrine/ORM/ResourceSubscriberTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
-     * @return \PHPUnit_Framework_MockObject_MockObject|LoadClassMetadataEventArgs
134
+     * @return LoadClassMetadataEventArgs
135 135
      */
136 136
     private function createLoadClassMetadataEventArgsMock()
137 137
     {
Please login to merge, or discard this patch.