Routing/Loader/RestYamlCollectionLoader.php 1 location
|
@@ 146-148 (lines=3) @@
|
143 |
|
} |
144 |
|
|
145 |
|
// set format requirement if configured globally |
146 |
|
if (!isset($config['requirements']['_format']) && !empty($this->formats)) { |
147 |
|
$config['requirements']['_format'] = implode('|', array_keys($this->formats)); |
148 |
|
} |
149 |
|
} |
150 |
|
|
151 |
|
// set the default format if configured |
Routing/Loader/Reader/RestActionReader.php 1 location
|
@@ 386-392 (lines=7) @@
|
383 |
|
*/ |
384 |
|
private function includeFormatIfNeeded(&$path, &$requirements) |
385 |
|
{ |
386 |
|
if ($this->includeFormat === true) { |
387 |
|
$path .= '.{_format}'; |
388 |
|
|
389 |
|
if (!isset($requirements['_format']) && !empty($this->formats)) { |
390 |
|
$requirements['_format'] = implode('|', array_keys($this->formats)); |
391 |
|
} |
392 |
|
} |
393 |
|
} |
394 |
|
|
395 |
|
/** |