Completed
Push — master ( 3e6d98...08a8d6 )
by Ricardo
04:32
created
src/Console/Commands/Prepare/ExcelPrepare.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -61,6 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     /**
63 63
      * Tirardaqui
64
+     * @param string $folder
64 65
      */
65 66
     public function importFromFolder($folder)
66 67
     {
@@ -74,6 +75,10 @@  discard block
 block discarded – undo
74 75
             // $collections = (new FastExcel)
75 76
                 ->import(
76 77
                     storage_path('app/'.$file),
78
+
79
+                    /**
80
+                     * @param string $line
81
+                     */
77 82
                     function ($line) use ($fileName, $assuntosDaPasta) {
78 83
                         $modelClass = RespectiveModel::run(
79 84
                             $assuntosDaPasta,
Please login to merge, or discard this patch.
src/Console/External/Explorer/DirectoryExplorer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@
 block discarded – undo
314 314
      * Get argument value from user informed arguments.
315 315
      *
316 316
      * @param  string $name argument name.
317
-     * @return Mixed argument value.
317
+     * @return string argument value.
318 318
      */
319 319
     protected function getArgumentValue($name)
320 320
     {
Please login to merge, or discard this patch.
src/Contracts/Spider/Track.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         return $this->parent;
41 41
     }
42 42
 
43
+    /**
44
+     * @param boolean $parent
45
+     */
43 46
     public function setParent($parent)
44 47
     {
45 48
         $this->parent = $parent;
Please login to merge, or discard this patch.
src/Actions/Instagram/Instagram.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         return $this->userName;
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $targets
36
+     */
34 37
     public function prepare($targets)
35 38
     {
36 39
         if (is_string($targets)) {
Please login to merge, or discard this patch.
src/Readers/iCalEasyReader.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
 	private $_lastitem = null;
21 21
 	private $_ignored = false;
22 22
 
23
+	/**
24
+	 * @param string $data
25
+	 */
23 26
 	public function &load($data)
24 27
 	{
25 28
 		$this->ical = false;
@@ -145,6 +148,10 @@  discard block
 block discarded – undo
145 148
 		return $value;
146 149
 	}
147 150
 
151
+	/**
152
+	 * @param string|null $group
153
+	 * @param null|string $parentgroup
154
+	 */
148 155
 	public function addItem($line, $group, $parentgroup)
149 156
 	{
150 157
 		$line = $this->transformLine($line);
@@ -215,6 +222,9 @@  discard block
 block discarded – undo
215 222
 		}
216 223
 	}
217 224
 
225
+	/**
226
+	 * @return string
227
+	 */
218 228
 	public function transformLine($line)
219 229
 	{
220 230
 		$patterns = ['\\\\[n]', '\\\\[t]', '\\\\,', '\\\\;'];
@@ -223,6 +233,10 @@  discard block
 block discarded – undo
223 233
 		return $this->mb_eregi_replace_all($patterns, $replacements, $line);
224 234
 	}
225 235
 
236
+	/**
237
+	 * @param string[] $pattern
238
+	 * @param string[] $replacement
239
+	 */
226 240
 	public function mb_eregi_replace_all($pattern, $replacement, $string)
227 241
 	{
228 242
 		if (is_array($pattern) and is_array($replacement)) {
Please login to merge, or discard this patch.