We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0514da5 commit 7813054Copy full SHA for 7813054
src/Model/ApiPathConfig.php
@@ -0,0 +1,34 @@
1
+<?php
2
+
3
+namespace MattJanssen\ApiResponseBundle\Model;
4
5
+/**
6
+ * @author Matt Janssen <matt@mattjanssen.com>
7
+ */
8
+class ApiPathConfig extends ApiConfig
9
+{
10
+ /**
11
+ * @var string
12
13
+ private $pattern;
14
15
16
+ * @return string
17
18
+ public function getPattern()
19
+ {
20
+ return $this->pattern;
21
+ }
22
23
24
+ * @param string $pattern
25
+ *
26
+ * @return $this
27
28
+ public function setPattern($pattern)
29
30
+ $this->pattern = $pattern;
31
32
+ return $this;
33
34
+}
0 commit comments