Completed
Branch master (572743)
by recca
03:28
created
src/ConfigServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Get the services provided by the provider.
54 54
      *
55
-     * @return array
55
+     * @return string[]
56 56
      */
57 57
     public function provides()
58 58
     {
Please login to merge, or discard this patch.
src/Repositories/DatabaseRepository.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\Config\Repositories;
4 4
 
5
+use Illuminate\Contracts\Config\Repository;
6
+use Illuminate\Filesystem\Filesystem;
5 7
 use Illuminate\Support\Arr;
6 8
 use Recca0120\Config\Config;
7
-use Illuminate\Filesystem\Filesystem;
8
-use Illuminate\Contracts\Config\Repository;
9 9
 
10 10
 class DatabaseRepository extends AbstractRepository
11 11
 {
Please login to merge, or discard this patch.