| 1 | <?php |
||
| 5 | abstract class AbstractSignatureServiceProvider |
||
| 6 | extends AbstractServiceProvider |
||
| 7 | implements SignatureServiceProviderInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $signature; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | 3 | public function withSignature($signature) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 3 | public function getSignature() |
|
| 31 | } |
||
| 32 |