Completed
Push — develop ( b4fba5...9773af )
by Kirill
12:38
created
app/Console/Commands/GitterRoomSyncCommand.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Illuminate\Container\Container;
18 18
 use Gitter\Models\User as GitterUser;
19 19
 use Gitter\Models\Room as GitterRoom;
20
-use Gitter\Models\Message as GitterMessage;
21 20
 use Illuminate\Contracts\Config\Repository;
22 21
 use Gitter\Iterators\PromiseIterator\Controls;
23 22
 
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of GitterBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 26.01.2016 4:57
7
- *
8
- * For the full copyright and license information, please view the LICENSE
9
- * file that was distributed with this source code.
10
- */
3
+     * This file is part of GitterBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 26.01.2016 4:57
7
+     *
8
+     * For the full copyright and license information, please view the LICENSE
9
+     * file that was distributed with this source code.
10
+     */
11 11
 namespace App\Console\Commands;
12 12
 
13 13
 use App\Console\CircleProgress;
Please login to merge, or discard this patch.
app/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      */
63 63
     public static function make(GitterUser $gitterUser, \Closure $new = null)
64 64
     {
65
-        if ($new === null) { $new = function(){}; }
65
+        if ($new === null) { $new = function() {}; }
66 66
 
67 67
         $user = static::where('gitter_id', $gitterUser->id)->first();
68 68
         if (!$user) {
Please login to merge, or discard this patch.
app/Room.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public static function make(GitterRoom $gitterRoom, \Closure $new = null)
40 40
     {
41
-        if ($new === null) { $new = function(){}; }
41
+        if ($new === null) { $new = function() {}; }
42 42
 
43 43
         $room = static::where('gitter_id', $gitterRoom->id)->first();
44 44
         if (!$room) {
Please login to merge, or discard this patch.
app/Console/CircleProgress.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of GitterBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 26.01.2016 5:21
7
- *
8
- * For the full copyright and license information, please view the LICENSE
9
- * file that was distributed with this source code.
10
- */
3
+     * This file is part of GitterBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 26.01.2016 5:21
7
+     *
8
+     * For the full copyright and license information, please view the LICENSE
9
+     * file that was distributed with this source code.
10
+     */
11 11
 namespace App\Console;
12 12
 
13 13
 /**
Please login to merge, or discard this patch.
app/Console/Commands/AbstractCommand.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of GitterBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 26.01.2016 4:59
7
- *
8
- * For the full copyright and license information, please view the LICENSE
9
- * file that was distributed with this source code.
10
- */
3
+     * This file is part of GitterBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 26.01.2016 4:59
7
+     *
8
+     * For the full copyright and license information, please view the LICENSE
9
+     * file that was distributed with this source code.
10
+     */
11 11
 namespace App\Console\Commands;
12 12
 
13 13
 use Gitter\Client;
Please login to merge, or discard this patch.