Completed
Push — master ( 6490fc...fdad74 )
by Henry
01:37
created
src/Console/InstallLaravelClubKonnect.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -51,6 +51,10 @@
 block discarded – undo
51 51
         $this->info('Laravel ClubKonnect Package Installation Complete!');
52 52
     }
53 53
 
54
+    /**
55
+     * @param string $path
56
+     * @param string $value
57
+     */
54 58
     private function writeChanges($path, string $key, string $configKey, $value){
55 59
         if (Str::contains(file_get_contents($path), "$key") === false) {
56 60
             $this->info("Now writing .env with $key=$value ...");
Please login to merge, or discard this patch.
src/Classes/ClubKonnectResponse.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,6 @@
 block discarded – undo
43 43
 
44 44
     /**
45 45
      * ClubKonnectResponse constructor.
46
-     * @param int $code
47
-     * @param string $message
48 46
      * @param object|array|null $responseBody
49 47
      * @throws ClubKonnectErrorException
50 48
      */
Please login to merge, or discard this patch.
src/ClubKonnect.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
 
26 26
     protected $config;
27 27
 
28
+    /**
29
+     * @param string $instanceName
30
+     */
28 31
     public function __construct($baseUrl, $instanceName, $config)
29 32
     {
30 33
         $this->baseUrl = $baseUrl;
Please login to merge, or discard this patch.