Completed
Push — master ( 76d7da...404d81 )
by greg
05:26 queued 02:44
created
src/Service/Memory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
      * @param \PlaygroundGame\Entity\Game $game
163 163
      * @param \PlaygroundUser\Entity\User $user
164 164
      * @param \PlaygroundUser\Entity\MemoryScore $score
165
-     * @param \PlaygroundUser\Entity\Entry $entry
165
+     * @param boolean $entry
166 166
      *
167 167
      * @return \PlaygroundUser\Entity\Entry $entry
168 168
      */
Please login to merge, or discard this patch.
src/View/Helper/GamesWidget.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
      * __invoke
22 22
      *
23 23
      * @access public
24
-     * @param  array  $options array of options
25 24
      * @return string
26 25
      */
27 26
     public function __invoke($displayHome = null, $classType = '', $order = '', $dir = 'DESC', $nbItems = 5)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace PlaygroundGame\View\Helper;
4 4
 
5 5
 use Zend\View\Helper\AbstractHelper;
6
-use Interop\Container\ContainerInterface;
7 6
 
8 7
 class GamesWidget extends AbstractHelper
9 8
 {
Please login to merge, or discard this patch.
src/View/Helper/GamesWidgetFactory.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * @param ContainerInterface $container
11
-     * @param string $requestedName
12
-     * @param array|null $options
13
-     * @return mixed
11
+     * @return GamesWidget
14 12
      */
15 13
     public function __invoke(ContainerInterface $container)
16 14
     {
Please login to merge, or discard this patch.
src/View/Helper/NextGamesWidget.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
      * __invoke
22 22
      *
23 23
      * @access public
24
-     * @param  array  $options array of options
25 24
      * @return string
26 25
      */
27 26
     public function __invoke($dateStart = null, $dateEnd = null, $classType = null, $cost = null, $order = null, $dir = 'DESC')
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace PlaygroundGame\View\Helper;
4 4
 
5 5
 use Zend\View\Helper\AbstractHelper;
6
-use Interop\Container\ContainerInterface;
7 6
 
8 7
 class NextGamesWidget extends AbstractHelper
9 8
 {
Please login to merge, or discard this patch.
src/View/Helper/NextGamesWidgetFactory.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * @param ContainerInterface $container
11
-     * @param string $requestedName
12
-     * @param array|null $options
13
-     * @return mixed
11
+     * @return NextGamesWidget
14 12
      */
15 13
     public function __invoke(ContainerInterface $container)
16 14
     {
Please login to merge, or discard this patch.
src/Controller/Admin/GameController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -15,10 +15,8 @@
 block discarded – undo
15 15
 use Zend\Session\Container;
16 16
 use ZfcDatagrid\Column;
17 17
 use ZfcDatagrid\Action;
18
-use ZfcDatagrid\Column\Formatter;
19 18
 use ZfcDatagrid\Column\Type;
20 19
 use ZfcDatagrid\Column\Style;
21
-use ZfcDatagrid\Filter;
22 20
 
23 21
 class GameController extends AbstractActionController
24 22
 {
Please login to merge, or discard this patch.