Routing/Loader/Reader/RestActionReader.php 1 location
|
@@ 428-434 (lines=7) @@
|
| 425 |
|
*/ |
| 426 |
|
private function includeFormatIfNeeded(&$path, &$requirements) |
| 427 |
|
{ |
| 428 |
|
if (true === $this->includeFormat) { |
| 429 |
|
$path .= '.{_format}'; |
| 430 |
|
|
| 431 |
|
if (!isset($requirements['_format']) && !empty($this->formats)) { |
| 432 |
|
$requirements['_format'] = implode('|', array_keys($this->formats)); |
| 433 |
|
} |
| 434 |
|
} |
| 435 |
|
} |
| 436 |
|
|
| 437 |
|
/** |
Routing/Loader/RestYamlCollectionLoader.php 1 location
|
@@ 138-140 (lines=3) @@
|
| 135 |
|
} |
| 136 |
|
|
| 137 |
|
// set format requirement if configured globally |
| 138 |
|
if (!isset($config['requirements']['_format']) && !empty($this->formats)) { |
| 139 |
|
$config['requirements']['_format'] = implode('|', array_keys($this->formats)); |
| 140 |
|
} |
| 141 |
|
} |
| 142 |
|
|
| 143 |
|
// set the default format if configured |