Completed
Branch master (cd9a7f)
by Gawain
06:39
created
src/AccessControl/Login.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@
 block discarded – undo
296 296
      *
297 297
      * @param integer $attempts
298 298
      *
299
-     * @return \DateTime
299
+     * @return null|Carbon
300 300
      */
301 301
     private function throttleUntil($attempts)
302 302
     {
Please login to merge, or discard this patch.
src/AccessControl/Permissions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
      *                    'roles' key; if no user is given, "guest" access is
458 458
      *                    assumed.
459 459
      *
460
-     * @return array A list of effective role names for this user.
460
+     * @return string[] A list of effective role names for this user.
461 461
      */
462 462
     public function getEffectiveRolesForUser($user)
463 463
     {
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
      *
552 552
      * @param array                $rule
553 553
      * @param array                $user
554
-     * @param array                $userRoles
554
+     * @param string[]                $userRoles
555 555
      * @param string|array|Content $content
556 556
      * @param string               $contenttypeSlug
557 557
      * @param integer              $contentid
Please login to merge, or discard this patch.
src/Controller/Backend/BackendBase.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * {@inheritdoc}
31
+     * @param string $template
31 32
      */
32 33
     protected function render($template, array $variables = [], array $globals = [])
33 34
     {
Please login to merge, or discard this patch.
src/Response/BoltResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     /**
110 110
      * Gets globals from the template.
111 111
      *
112
-     * @return array
112
+     * @return \Silex\Application
113 113
      */
114 114
     public function getGlobalContext()
115 115
     {
Please login to merge, or discard this patch.
src/Storage/Database/Schema/SchemaCheck.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,6 @@
 block discarded – undo
300 300
      * Add a message for a foreign key change.
301 301
      *
302 302
      * @param string               $tableName
303
-     * @param ForeignKeyConstraint $index
304 303
      * @param string               $format
305 304
      */
306 305
     private function addForeignKeysMessage($tableName, ForeignKeyConstraint $foreignKey, $format)
Please login to merge, or discard this patch.
src/Storage/Entity/Content.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * Set creation date.
108 108
      *
109
-     * @param \DateTime|string|null $date
109
+     * @param string $date
110 110
      */
111 111
     public function setDatecreated($date)
112 112
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Set change date.
132 132
      *
133
-     * @param \DateTime|string|null $date
133
+     * @param string $date
134 134
      */
135 135
     public function setDatechanged($date)
136 136
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     /**
141 141
      * Set published date.
142 142
      *
143
-     * @param \DateTime|string|null $date
143
+     * @param string $date
144 144
      */
145 145
     public function setDatepublish($date)
146 146
     {
Please login to merge, or discard this patch.
src/Storage/EntityManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
     /**
174 174
      * Shorthand access method to create collection. Consults aliases to allow short names.
175 175
      *
176
-     * @param $className
176
+     * @param string $className
177 177
      *
178 178
      * @return mixed
179 179
      */
Please login to merge, or discard this patch.
src/Storage/Field/Collection/FieldCollection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     }
63 63
 
64 64
     /**
65
-     * @param mixed $grouping
65
+     * @param integer $grouping
66 66
      */
67 67
     public function setGrouping($grouping)
68 68
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @param mixed $element
73
+     * @param \Bolt\Storage\Entity\FieldValue $element
74 74
      *
75 75
      * @return bool
76 76
      */
Please login to merge, or discard this patch.
src/Storage/Mapping/MetadataDriver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -195,6 +195,9 @@
 block discarded – undo
195 195
         }
196 196
     }
197 197
 
198
+    /**
199
+     * @param Table $table
200
+     */
198 201
     public function setRepeaters($contentKey, $className, $table)
199 202
     {
200 203
         if (!isset($this->contenttypes[$contentKey])) {
Please login to merge, or discard this patch.