PluginProbe
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution / 1.9.0
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution v1.9.0
2.0.1 trunk 1.0.0 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.5.0 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.9.0 2.0.0
solid-performance / src / Performance / Cache_Delivery / Contracts / Readable.php

Readable.php in Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution 1.9.0, at src/Performance/Cache_Delivery/Contracts/Readable.php

28 lines 596 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The cache delivery reader interface to read different cache delivery config files.
4 *
5 * @package SolidWP\Performance
6 */
7
8 declare( strict_types=1 );
9
10 namespace SolidWP\Performance\Cache_Delivery\Contracts;
11
12 use SolidWP\Performance\Cache_Delivery\Exceptions\CacheDeliveryReadException;
13
14 /**
15 * @internal
16 */
17 interface Readable {
18
19 /**
20 * Acquire a read lock and read the contents of a cache delivery file.
21 *
22 * @throws CacheDeliveryReadException When we are unable to open or lock a cache delivery file for reading.
23 *
24 * @return string
25 */
26 public function read(): string;
27 }
28