Completed
Push — master ( 74c577...c1ce98 )
by Kirill
06:10
created
app/Core/Doctrine/AnnotationsServiceProvider.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 declare(strict_types = 1);
3 3
 /**
4
- * This file is part of GitterBot package.
5
- *
6
- * @author Serafim <[email protected]>
7
- * @date 03.03.2016 15:00
8
- *
9
- * For the full copyright and license information, please view the LICENSE
10
- * file that was distributed with this source code.
11
- */
4
+     * This file is part of GitterBot package.
5
+     *
6
+     * @author Serafim <[email protected]>
7
+     * @date 03.03.2016 15:00
8
+     *
9
+     * For the full copyright and license information, please view the LICENSE
10
+     * file that was distributed with this source code.
11
+     */
12 12
 
13 13
 
14 14
 namespace Core\Providers;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,11 +35,11 @@
 block discarded – undo
35 35
      */
36 36
     public function register()
37 37
     {
38
-        AnnotationRegistry::registerLoader(function ($class) {
38
+        AnnotationRegistry::registerLoader(function($class) {
39 39
             return class_exists($class);
40 40
         });
41 41
 
42
-        $this->app->singleton(Reader::class, function (Application $app) {
42
+        $this->app->singleton(Reader::class, function(Application $app) {
43 43
             $debug = $app->make(Repository::class)->get('app.debug', false);
44 44
             $cache = $app->make($debug ? ArrayCache::class : CacheBridge::class);
45 45
 
Please login to merge, or discard this patch.