mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-07-21 14:08:48 -04:00
- str_starts_with, str_contains used instead of strpos === 0, strpos !== 0, strpos === false, strpos !== false
- symfony/polyfill-php80 installed to introduce the polyfill and support php7.3 using php8 functions - symfony/polyfill-ctype installed to introduce ctype functions in case somebody doesn't have the ctype extension installed
This commit is contained in:
parent
15488d3405
commit
f9e2373e62
29 changed files with 1367 additions and 555 deletions
|
@ -371,7 +371,7 @@ class GoogleCloudStorage extends AbstractData
|
|||
try {
|
||||
foreach ($this->_bucket->objects(array('prefix' => $prefix)) as $object) {
|
||||
$candidate = substr($object->name(), strlen($prefix));
|
||||
if (strpos($candidate, '/') === false) {
|
||||
if (!str_contains($candidate, '/')) {
|
||||
$pastes[] = $candidate;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -462,7 +462,7 @@ class S3Storage extends AbstractData
|
|||
try {
|
||||
foreach ($this->_listAllObjects($prefix) as $object) {
|
||||
$candidate = substr($object['Key'], strlen($prefix));
|
||||
if (strpos($candidate, '/') === false) {
|
||||
if (!str_contains($candidate, '/')) {
|
||||
$pastes[] = $candidate;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue