Completed
Push — master ( 68323b...c1c7c7 )
by Vijay
08:01
created
system/core/Benchmark.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@
 block discarded – undo
42 42
      * Set a benchmark stop point.
43 43
      *
44 44
      * @param   string  benchmark name
45
+     * @param string|boolean $name
45 46
      * @return  void
46 47
      */
47 48
     public static function stop($name)
Please login to merge, or discard this patch.
system/libraries/drivers/Database/Mssql.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -303,6 +303,7 @@
 block discarded – undo
303 303
      * @param  resource  database link
304 304
      * @param  boolean   return objects or arrays
305 305
      * @param  string    SQL query that was run
306
+     * @param string $sql
306 307
      */
307 308
     public function __construct($result, $link, $object = true, $sql)
308 309
     {
Please login to merge, or discard this patch.
system/libraries/drivers/Database/Mysql.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -330,6 +330,7 @@
 block discarded – undo
330 330
      * @param  boolean   return objects or arrays
331 331
      * @param  string    SQL query that was run
332 332
      * @param resource $result
333
+     * @param string $sql
333 334
      */
334 335
     public function __construct($result, $link, $object = true, $sql)
335 336
     {
Please login to merge, or discard this patch.
system/libraries/drivers/Database/Pdosqlite.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -278,6 +278,7 @@
 block discarded – undo
278 278
      * @param  string    SQL query that was run
279 279
      * @param PDOStatement $result
280 280
      * @param PDO $link
281
+     * @param string $sql
281 282
      */
282 283
     public function __construct($result, $link, $object = true, $sql)
283 284
     {
Please login to merge, or discard this patch.
system/libraries/drivers/Database/Pgsql.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -297,6 +297,7 @@
 block discarded – undo
297 297
      * @param  resource  database link
298 298
      * @param  boolean   return objects or arrays
299 299
      * @param  string    SQL query that was run
300
+     * @param string $sql
300 301
      */
301 302
     public function __construct($result, $link, $object = true, $sql)
302 303
     {
Please login to merge, or discard this patch.
system/vendor/swift/Swift.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
    * Check if an option flag has been set
179 179
    * @param string Option name
180 180
    * @param integer $option
181
-   * @return boolean
181
+   * @return integer
182 182
    */
183 183
   public function hasOption($option)
184 184
   {
Please login to merge, or discard this patch.
system/vendor/swift/Swift/BatchMailer.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -183,6 +183,7 @@
 block discarded – undo
183 183
    * @param Swift_Message To send
184 184
    * @param Swift_RecipientList Recipients (To: only)
185 185
    * @param Swift_Address The sender's address
186
+   * @param Swift_Address $sender
186 187
    * @return int The number sent to
187 188
    */
188 189
   public function send(Swift_Message $message, Swift_RecipientList $recipients, $sender)
Please login to merge, or discard this patch.
system/vendor/swift/Swift/Connection/Sendmail.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -191,6 +191,7 @@
 block discarded – undo
191 191
   /**
192 192
    * Write a command to the open pipe
193 193
    * @param string The command to write
194
+   * @param string $command
194 195
    * @throws Swift_ConnectionException If the pipe cannot be written to
195 196
    */
196 197
   protected function pipeIn($command, $end="\r\n")
Please login to merge, or discard this patch.
system/vendor/swift/Swift/Connection/SMTP.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -144,6 +144,7 @@
 block discarded – undo
144 144
   /**
145 145
    * Set the remote port number to connect to
146 146
    * @param int Port number
147
+   * @param integer|null $port
147 148
    */
148 149
   public function setPort($port)
149 150
   {
Please login to merge, or discard this patch.