Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
Fixed some code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbdaly committed Jun 15, 2022
1 parent b992d7a commit 4dfa9a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
<rule ref="SlevomatCodingStandard.Operators.DisallowEqualOperators"/>
<rule ref="SlevomatCodingStandard.Operators.DisallowIncrementAndDecrementOperators"/>
<rule ref="SlevomatCodingStandard.PHP.DisallowReference"/>
<rule ref="SlevomatCodingStandard.PHP.RequireExplicitAssertion"/>
<rule ref="SlevomatCodingStandard.PHP.RequireNowdoc"/>
<rule ref="SlevomatCodingStandard.PHP.UselessParentheses"/>
<rule ref="SlevomatCodingStandard.PHP.OptimizedFunctionsWithoutUnpacking"/>
Expand Down
6 changes: 5 additions & 1 deletion src/AzureStorageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ public function register()
$configObject = $app->make('config');
assert($configObject instanceof \Illuminate\Contracts\Config\Repository);
$config = empty($config) ? (array)$configObject->get('filesystems.disks.azure') : $config;
/** @var ProviderConfig $config */
/**
* Provider config
*
* @var ProviderConfig $config
*/

if (!empty($config['connection_string'])) {
$endpoint = (string)$config['connection_string'];
Expand Down

0 comments on commit 4dfa9a4

Please sign in to comment.