Completed
Push — master ( 8bc203...e5859f )
by recca
09:43
created
src/Code.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
         return $attributes;
54 54
     }
55 55
 
56
+    /**
57
+     * @return string
58
+     */
56 59
     public function render()
57 60
     {
58 61
         return $this->format($this->renderStub(), Arr::get($this->config, 'sort', true));
@@ -92,6 +95,9 @@  discard block
 block discarded – undo
92 95
         return strtr($this->files->get($this->config['stub']), $this->getDummyAttributes());
93 96
     }
94 97
 
98
+    /**
99
+     * @param string $content
100
+     */
95 101
     private function format($content, $useSort = false)
96 102
     {
97 103
         return $useSort === true ? $this->useSortFixer->fix($content) : $content;
Please login to merge, or discard this patch.