Completed
Push — master ( 730e79...1e2474 )
by Serhii
11s
created
src/AppBundle/Command/LoadCsvFixturesCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
     /**
68 68
      * @param $entityName
69
-     * @param $csvFile
69
+     * @param string $csvFile
70 70
      * @return array
71 71
      */
72 72
     protected function csvToArray($entityName, $csvFile)
Please login to merge, or discard this patch.
src/AppBundle/Model/AbstractPaginatedModel.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     protected $totalCount;
46 46
 
47 47
     /**
48
-     * @return mixed
48
+     * @return integer
49 49
      */
50 50
     public function getPageCount()
51 51
     {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @param mixed $pageCount
56
+     * @param double $pageCount
57 57
      */
58 58
     public function setPageCount($pageCount)
59 59
     {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @return mixed
64
+     * @return integer
65 65
      */
66 66
     public function getPage()
67 67
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-     * @return mixed
96
+     * @return string
97 97
      */
98 98
     public function getLinks()
99 99
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     }
102 102
 
103 103
     /**
104
-     * @param  mixed $links
104
+     * @param  PaginationLinks $links
105 105
      * @return $this
106 106
      */
107 107
     public function setLinks($links)
Please login to merge, or discard this patch.
src/AppBundle/Model/EmployeesResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     protected $count;
33 33
 
34 34
     /**
35
-     * @return mixed
35
+     * @return Employee[]
36 36
      */
37 37
     public function getEmployees()
38 38
     {
Please login to merge, or discard this patch.
src/AppBundle/Model/PerformancesResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     protected $count;
32 32
 
33 33
     /**
34
-     * @return mixed
34
+     * @return Performance[]
35 35
      */
36 36
     public function getPerformances()
37 37
     {
Please login to merge, or discard this patch.
src/AppBundle/Model/PostsResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     protected $count;
32 32
 
33 33
     /**
34
-     * @return mixed
34
+     * @return Post[]
35 35
      */
36 36
     public function getPosts()
37 37
     {
Please login to merge, or discard this patch.
src/AppBundle/Model/HistoryResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     protected $count;
33 33
 
34 34
     /**
35
-     * @return mixed
35
+     * @return History[]
36 36
      */
37 37
     public function getHistory()
38 38
     {
Please login to merge, or discard this patch.