-
Notifications
You must be signed in to change notification settings - Fork 355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refacto: spec types #701
refacto: spec types #701
Conversation
7614e68
to
1577552
Compare
1577552
to
f0fcab2
Compare
@@ -13,10 +13,10 @@ | |||
class AzureBlobStorageTest extends FunctionalTestCase | |||
{ | |||
/** @var string Name of the Azure container used */ | |||
private $container; | |||
private string $container; | |||
|
|||
/** @var AzureBlobStorage */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To remove
@@ -13,10 +13,10 @@ | |||
class AzureBlobStorageTest extends FunctionalTestCase | |||
{ | |||
/** @var string Name of the Azure container used */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/** @var string Name of the Azure container used */ | |
/** Name of the Azure container used */ |
09b0fdc
to
8bd80cc
Compare
8bd80cc
to
f16ad45
Compare
@@ -30,17 +30,17 @@ function extension_loaded($name) | |||
return $extensionLoaded; | |||
} | |||
|
|||
function opendir($url) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See rewrited function: https://www.php.net/manual/en/function.opendir.php
{ | ||
return true; | ||
} | ||
|
||
function apc_fetch($path) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{ | ||
return sprintf('%s content', $path); | ||
} | ||
|
||
function apc_store($path, $content, $ttl) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -58,7 +58,7 @@ function apc_delete($path) | |||
return true; | |||
} | |||
|
|||
function apc_exists($path) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2ac645e
to
79645d2
Compare
No description provided.