File tree Expand file tree Collapse file tree 5 files changed +25
-0
lines changed
Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ class JsonFormat implements FormatInterface
1616
1717 const FORMAT_NAME = 'json ' ;
1818
19+ /**
20+ * Gets format name
21+ *
22+ * @return string
23+ */
1924 public function getName ()
2025 {
2126 return self ::FORMAT_NAME ;
Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ class PhpFormat implements FormatInterface
1616
1717 const FORMAT_NAME = 'php ' ;
1818
19+ /**
20+ * Gets format name
21+ *
22+ * @return string
23+ */
1924 public function getName ()
2025 {
2126 return self ::FORMAT_NAME ;
Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ class TextFormat implements FormatInterface
1616
1717 const FORMAT_NAME = 'text ' ;
1818
19+ /**
20+ * Gets format name
21+ *
22+ * @return string
23+ */
1924 public function getName ()
2025 {
2126 return self ::FORMAT_NAME ;
Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ class XmlFormat implements FormatInterface
1616
1717 const FORMAT_NAME = 'xml ' ;
1818
19+ /**
20+ * Gets format name
21+ *
22+ * @return string
23+ */
1924 public function getName ()
2025 {
2126 return self ::FORMAT_NAME ;
Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ class YamlFormat implements FormatInterface
1616
1717 const FORMAT_NAME = 'yml ' ;
1818
19+ /**
20+ * Gets format name
21+ *
22+ * @return string
23+ */
1924 public function getName ()
2025 {
2126 return self ::FORMAT_NAME ;
You can’t perform that action at this time.
0 commit comments