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

Commit 4dfa9a4

Browse files
committed
Fixed some code style issues
1 parent b992d7a commit 4dfa9a4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

phpcs.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
<rule ref="SlevomatCodingStandard.Operators.DisallowEqualOperators"/>
106106
<rule ref="SlevomatCodingStandard.Operators.DisallowIncrementAndDecrementOperators"/>
107107
<rule ref="SlevomatCodingStandard.PHP.DisallowReference"/>
108-
<rule ref="SlevomatCodingStandard.PHP.RequireExplicitAssertion"/>
109108
<rule ref="SlevomatCodingStandard.PHP.RequireNowdoc"/>
110109
<rule ref="SlevomatCodingStandard.PHP.UselessParentheses"/>
111110
<rule ref="SlevomatCodingStandard.PHP.OptimizedFunctionsWithoutUnpacking"/>

src/AzureStorageServiceProvider.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ public function register()
7373
$configObject = $app->make('config');
7474
assert($configObject instanceof \Illuminate\Contracts\Config\Repository);
7575
$config = empty($config) ? (array)$configObject->get('filesystems.disks.azure') : $config;
76-
/** @var ProviderConfig $config */
76+
/**
77+
* Provider config
78+
*
79+
* @var ProviderConfig $config
80+
*/
7781

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

0 commit comments

Comments
 (0)