diff --git a/src/Model/ApiPathConfig.php b/src/Model/ApiPathConfig.php new file mode 100644 index 0000000..96b5a36 --- /dev/null +++ b/src/Model/ApiPathConfig.php @@ -0,0 +1,34 @@ + + */ +class ApiPathConfig extends ApiConfig +{ + /** + * @var string + */ + private $pattern; + + /** + * @return string + */ + public function getPattern() + { + return $this->pattern; + } + + /** + * @param string $pattern + * + * @return $this + */ + public function setPattern($pattern) + { + $this->pattern = $pattern; + + return $this; + } +}