Completed
Push — master ( 731a14...39886c )
by Patrick
05:14 queued 02:46
created
Http/WebPage.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@  discard block
 block discarded – undo
78 78
         $this->loader->addPath($dir, $namespace);
79 79
     }
80 80
 
81
+    /**
82
+     * @param string $name
83
+     */
81 84
     public function setTemplateName($name)
82 85
     {
83 86
         $this->templateName = $name;
@@ -112,7 +115,6 @@  discard block
 block discarded – undo
112 115
      * Add a JavaScript file from a set of files known to the framework
113 116
      *
114 117
      * @param string $jsFileID the ID of the JS file
115
-     * @param boolean $async Can the JS file be loaded asynchronously?
116 118
      */
117 119
     public function addWellKnownJS($jsFileID)
118 120
     {
Please login to merge, or discard this patch.
LDAP/LDAPServer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * @author Chris Wright
7 7
  * @version 2.0
8 8
  * @param string $subject The subject string
9
- * @param bool $dn Treat subject as a DN if TRUE
10 9
  * @param string|array $ignore Set of characters to leave untouched
11 10
  * @return string The escaped string
12 11
  */
Please login to merge, or discard this patch.
Serialize/ExcelSerializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
 {
8 8
     protected $types = array('xlsx', 'xls', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/vnd.ms-excel');
9 9
 
10
+    /**
11
+     * @param integer $row
12
+     */
10 13
     protected function setRowFromArray(&$sheat, $row, $array, $count = 0)
11 14
     {
12 15
         if($count === 0)
Please login to merge, or discard this patch.
Auth/LDAPAuthenticator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      *
234 234
      * @param \stdClass	$data The AuthData from the session
235 235
      *
236
-     * @return null|\Auth\LDAPUser The LDAPUser represented by this data
236
+     * @return LDAPUser The LDAPUser represented by this data
237 237
      */
238 238
     public function getUser($data)
239 239
     {
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
      *
246 246
      * @param string $name The Group's name
247 247
      *
248
-     * @return null|\Auth\LDAPGroup The LDAPGroup represented by the name or null if not found
248
+     * @return null|LDAPGroup The LDAPGroup represented by the name or null if not found
249 249
      */
250 250
     public function getGroupByName($name)
251 251
     {
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
     }
330 330
 
331 331
     /**
332
-     * @param boolean|\Data\Filter $filter The filter to user when reading users
332
+     * @param \Flipside\Data\Filter $filter The filter to user when reading users
333 333
      * @param boolean|array   $select The fields to return
334 334
      * @param boolean|integer $top The number of records to return
335 335
      * @param boolean|integer $skip The number of records to skip
Please login to merge, or discard this patch.
Auth/SQLAuthenticator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Get the data table for Pending Users
75 75
      *
76
-     * @return boolean|\Data\DataTable The Pending User Data Table
76
+     * @return boolean The Pending User Data Table
77 77
      */
78 78
     private function getPendingUserDataTable()
79 79
     {
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     }
282 282
 
283 283
     /**
284
-     * @param \Data\Filter $filter The filter to read with
284
+     * @param \Flipside\Data\Filter $filter The filter to read with
285 285
      * @param boolean|array $select The fields to read
286 286
      * @param boolean|integer $top The number of entities to read
287 287
      * @param boolean|integer $skip The number of entities to skip
Please login to merge, or discard this patch.