Skip to content

Commit

Permalink
Fix lint fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh3305 committed Oct 14, 2023
1 parent 28de259 commit 9e9c3cf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Storage/Device/IBMCloudObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public function __construct(string $root, string $accessKey, string $secretKey,
parent::__construct($root, $accessKey, $secretKey, $bucket, $region, $acl);
$this->headers['host'] = $bucket.'.'.$region.'.'.'cloud.ibm.com';
}


/**
* @return string
Expand Down
2 changes: 1 addition & 1 deletion src/Storage/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Storage

const DEVICE_LINODE = 'linode';

const DEVICE_IBM_CLOUD_OBJECT ="IBM Cloud Object";
const DEVICE_IBM_CLOUD_OBJECT = 'IBM Cloud Object';

/**
* Devices.
Expand Down
2 changes: 1 addition & 1 deletion tests/Storage/Device/IBMCloudObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ protected function getAdapterDescription(): string
{
return 'IBM Cloud Object';
}
}
}

0 comments on commit 9e9c3cf

Please sign in to comment.