| 1 | <?php |
||
| 18 | abstract class AbstractStorage implements StorageInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var HashingStrategyInterface Hashing strategy |
||
| 22 | */ |
||
| 23 | protected $hashingStrategy; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param HashingStrategyInterface|null $hashingStrategy Hashing strategy |
||
| 27 | */ |
||
| 28 | 24 | public function __construct(HashingStrategyInterface $hashingStrategy = null) |
|
| 36 | } |
||
| 37 |