Best Time To Post On Instagram Sunday

Jolly Fish Studio LinkedIn Post

watch dora the explorer season 4 episode 3 dora the explorer star

:
Product Launch Readiness Plan Template
Update to PHP 8.0 and PHP 8-compatible types.
1 parent Intro Slide Example commit ab4007c

Bank Of America Credit Card PNG 4 files changed All The Best Post

Lines changed: 10 additions & 10 deletions

Living Room Furniture Layout Plan Jolly Fish Studio LinkedIn Post

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=5.3.0"
13+
"php": ">=8.0.0"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/CacheException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
/**
66
* Exception interface for all exceptions thrown by an Implementing Library.
77
*/
8-
interface CacheException
8+
interface CacheException extends \Throwable
99
{
1010
}

src/CacheItemInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ public function isHit();
7272
* @return static
7373
* The invoked object.
7474
*/
75-
public function set($value);
75+
public function set(mixed $value);
7676

7777
/**
7878
* Sets the expiration time for this cache item.
7979
*
80-
* @param \DateTimeInterface|null $expiration
80+
* @param ?\DateTimeInterface $expiration
8181
* The point in time after which the item MUST be considered expired.
8282
* If null is passed explicitly, a default value MAY be used. If none is set,
8383
* the value should be stored permanently or for as long as the
@@ -86,7 +86,7 @@ public function set($value);
8686
* @return static
8787
* The called object.
8888
*/
89-
public function expiresAt($expiration);
89+
public function expiresAt(?\DateTimeInterface $expiration);
9090

9191
/**
9292
* Sets the expiration time for this cache item.
@@ -101,5 +101,5 @@ public function expiresAt($expiration);
101101
* @return static
102102
* The called object.
103103
*/
104-
public function expiresAfter($time);
104+
public function expiresAfter(int|\DateInterval|null $time);
105105
}

src/CacheItemPoolInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface CacheItemPoolInterface
2929
* @return CacheItemInterface
3030
* The corresponding Cache Item.
3131
*/
32-
public function getItem($key);
32+
public function getItem(string $key);
3333

3434
/**
3535
* Returns a traversable set of cache items.
@@ -47,7 +47,7 @@ public function getItem($key);
4747
* key is not found. However, if no keys are specified then an empty
4848
* traversable MUST be returned instead.
4949
*/
50-
public function getItems(array $keys = array());
50+
public function getItems(array $keys = []);
5151

5252
/**
5353
* Confirms if the cache contains specified cache item.
@@ -66,7 +66,7 @@ public function getItems(array $keys = array());
6666
* @return bool
6767
* True if item exists in the cache, false otherwise.
6868
*/
69-
public function hasItem($key);
69+
public function hasItem(string $key);
7070

7171
/**
7272
* Deletes all items in the pool.
@@ -89,7 +89,7 @@ public function clear();
8989
* @return bool
9090
* True if the item was successfully removed. False if there was an error.
9191
*/
92-
public function deleteItem($key);
92+
public function deleteItem(string $key);
9393

9494
/**
9595
* Removes multiple items from the pool.

Serious Blog Post Examples Jolly Fish Studio LinkedIn

Comments
 (0)