Completed
Pull Request — master (#20)
by
unknown
04:59 queued 03:59
created
src/Credentials.php 2 patches
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\Credentials;
4 4
 
5
-use Illuminate\Support\Arr;
6 5
 use Illuminate\Contracts\Encryption\Encrypter;
7
-use BeyondCode\Credentials\Exceptions\FileDoesNotExist;
6
+use Illuminate\Support\Arr;
8 7
 
9 8
 class Credentials
10 9
 {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * Load the file.
40 40
      *
41 41
      * @param string $filename
42
-     * @return array
42
+     * @return resource
43 43
      */
44 44
     public function load(string $filename)
45 45
     {
Please login to merge, or discard this patch.
src/EditCredentialsCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\Credentials;
4 4
 
5
+use BeyondCode\Credentials\Exceptions\InvalidJSON;
5 6
 use Illuminate\Console\Command;
6 7
 use Symfony\Component\Process\Process;
7
-use BeyondCode\Credentials\Exceptions\InvalidJSON;
8 8
 
9 9
 class EditCredentialsCommand extends Command
10 10
 {
Please login to merge, or discard this patch.