File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
dev/tests/static/testsuite/Magento/Test/Php/_files/phpstan/blacklist
lib/internal/Magento/Framework/Storage/AdapterFactory Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,5 @@ dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressRepositoryTest.ph
14
14
dev/tests/api-functional/testsuite/Magento/Framework/Model/Entity/HydratorTest.php
15
15
dev/tests/api-functional/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php
16
16
dev/tests/api-functional/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php
17
+ lib/internal/Magento/Framework/Storage/AdapterFactory/AwsS3Factory.php
18
+ lib/internal/Magento/Framework/Storage/AdapterFactory/AzureFactory.php
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ class AwsS3Factory implements AdapterFactoryInterface
20
20
*/
21
21
public function create (array $ options ): AdapterInterface
22
22
{
23
- // phpstan:ignore
24
23
if (empty ($ options ['client ' ]) || empty ($ options ['bucket ' ])) {
25
24
throw new InvalidStorageConfigurationException (
26
25
"Can't create AWS S3 adapter: required 'client' and/or 'bucket' options are absent "
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ class AzureFactory implements AdapterFactoryInterface
20
20
*/
21
21
public function create (array $ options ): AdapterInterface
22
22
{
23
- // phpstan:ignore
24
23
if (empty ($ options ['connection_string ' ]) || empty ($ options ['container_name ' ])) {
25
24
throw new InvalidStorageConfigurationException (
26
25
"Can't create Azure Blob storage adapter: " .
You can’t perform that action at this time.
0 commit comments