Passed
Pull Request — master (#15)
by mingyoung
04:34
created
src/ManifestManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     {
81 81
         $manifest = [];
82 82
 
83
-        $packages = array_filter($packages, function ($package) {
83
+        $packages = array_filter($packages, function($package) {
84 84
             return $package['type'] === self::PACKAGE_TYPE;
85 85
         });
86 86
 
Please login to merge, or discard this patch.
src/Laravel/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     protected function registerRoutes()
50 50
     {
51
-        Route::prefix('easywechat-composer')->namespace('EasyWeChatComposer\Laravel\Http\Controllers')->group(function () {
51
+        Route::prefix('easywechat-composer')->namespace('EasyWeChatComposer\Laravel\Http\Controllers')->group(function() {
52 52
             $this->loadRoutesFrom(__DIR__.'/routes.php');
53 53
         });
54 54
     }
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected function getMd5Key()
105 105
     {
106
-        return Cache::remember('easywechat-composer.encryption_key', 30, function () {
106
+        return Cache::remember('easywechat-composer.encryption_key', 30, function() {
107 107
             throw_unless(file_exists($path = base_path('composer.lock')), RuntimeException::class, 'No encryption key provided.');
108 108
 
109 109
             return md5_file($path);
Please login to merge, or discard this patch.