| 1 | <?php |
||
| 8 | class ArduinoFormatter |
||
| 9 | { |
||
| 10 | const LIMIT_BYTES = 16; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param Build $build |
||
| 14 | * @return string |
||
| 15 | */ |
||
| 16 | public function format(Build $build) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $text |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | private function normalizeToLimitBytes($text) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param StdClass $actions |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | private function normalizeRunner($actions) |
||
| 65 | } |
||
| 66 |