1 | <?php |
||
18 | trait TShopRunnerMessage |
||
19 | { |
||
20 | /** @var string */ |
||
21 | protected $shopRunnerMessage; |
||
22 | |||
23 | public function getShopRunnerMessage() |
||
27 | |||
28 | public function setShopRunnerMessage($shopRunnerMessage) |
||
33 | |||
34 | protected function serializeShopRunnerMessage() |
||
41 | |||
42 | /** |
||
43 | * Normalize any whitespace characters, tab, new line, etc., with a single |
||
44 | * space caracter. Does not collapse whitespace. |
||
45 | * |
||
46 | * @param string |
||
47 | * @return string |
||
48 | */ |
||
49 | abstract protected function normalizeWhitespace($string); |
||
50 | } |
||
51 |