Completed
Push — master ( 38bba2...5afe5b )
by Kevin
02:40
created
src/Doctrine/DBAL/DBALQueryBuilderResult.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function take($offset, $limit)
26 26
     {
27 27
         $qb = clone $this->qb;
28
-        $results = function ($offset, $limit) use ($qb) {
28
+        $results = function($offset, $limit) use ($qb) {
29 29
             return $qb
30 30
                 ->setFirstResult($offset)
31 31
                 ->setMaxResults($limit)
Please login to merge, or discard this patch.
src/Pager/ResultPager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct(Result $result, $page = 1, $limit = self::DEFAULT_LIMIT)
26 26
     {
27
-        if (!is_numeric($page)) {
27
+        if ( ! is_numeric($page)) {
28 28
             $page = 1;
29 29
         }
30 30
 
31
-        if (!is_numeric($limit)) {
31
+        if ( ! is_numeric($limit)) {
32 32
             $limit = self::DEFAULT_LIMIT;
33 33
         }
34 34
 
Please login to merge, or discard this patch.
src/Bridge/KnpPager/PorpaginasSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     public function items(ItemsEvent $event)
15 15
     {
16
-        if (!$event->target instanceof Result) {
16
+        if ( ! $event->target instanceof Result) {
17 17
             return;
18 18
         }
19 19
 
Please login to merge, or discard this patch.