Completed
Push — develop ( 567ccb )
by Kirill
08:42
created
app/Domains/Service/ServiceUser.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 KarmaBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 15.03.2016 18:27
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 KarmaBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 15.03.2016 18:27
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 Domains\Service;
12 12
 
13 13
 use Analogue\ORM\ValueObject;
Please login to merge, or discard this patch.
app/Domains/Account/User.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of KarmaBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 15.03.2016 16:14
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 KarmaBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 15.03.2016 16:14
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 Domains\Account;
12 12
 
13 13
 use Analogue\ORM\Entity;
@@ -78,9 +78,9 @@  discard block
 block discarded – undo
78 78
      */
79 79
     public function getAvatarAttribute($avatar)
80 80
     {
81
-       if ($avatar) {
82
-           return $avatar;
83
-       }
81
+        if ($avatar) {
82
+            return $avatar;
83
+        }
84 84
 
85 85
         return sprintf('https://github.com/identicons/%s.png', $this->login);
86 86
     }
Please login to merge, or discard this patch.
app/Domains/Account/AvatarPublisher.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 KarmaBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 15.03.2016 20:00
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 KarmaBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 15.03.2016 20:00
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 Domains\Account;
12 12
 
13 13
 use Illuminate\Support\Str;
Please login to merge, or discard this patch.
app/Domains/Message/Message.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 KarmaBot package.
4
- *
5
- * @author Serafim <[email protected]>
6
- * @date 15.03.2016 17:14
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 KarmaBot package.
4
+     *
5
+     * @author Serafim <[email protected]>
6
+     * @date 15.03.2016 17:14
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 Domains\Message;
12 12
 
13 13
 use Analogue\ORM\Entity;
Please login to merge, or discard this patch.
app/Interfaces/Http/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
Please login to merge, or discard this patch.
app/Interfaces/Console/Kernel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
     protected function schedule(Schedule $schedule)
26 26
     {
27 27
         $schedule->command('inspire')
28
-                 ->hourly();
28
+                    ->hourly();
29 29
     }
30 30
 }
Please login to merge, or discard this patch.