| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class ExtractCityStateAction extends AbstractActionStatic |
||
| 11 | { |
||
| 12 | use States; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Extract a (city, state) string from a google places API return that may contain a zip code |
||
| 16 | * |
||
| 17 | * @param string $description |
||
| 18 | * @return array |
||
| 19 | */ |
||
| 20 | public static function execute(string $description) |
||
| 39 |