aboutsummaryrefslogtreecommitdiff
path: root/src/Parsers
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-07-15 18:13:16 +0300
committerValentin Popov <info@valentineus.link>2020-07-15 18:13:16 +0300
commitc0d5496035e5ac7ec44a832428a8d651a950903d (patch)
tree5c22b49e975aeb2816a0c927e156d8054e3ee087 /src/Parsers
parentc18b1373d03f84d58737712b57efa02e642a1e58 (diff)
downloadphp-epg-service-c0d5496035e5ac7ec44a832428a8d651a950903d.tar.xz
php-epg-service-c0d5496035e5ac7ec44a832428a8d651a950903d.zip
Added interface of parser
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/Parsers')
-rw-r--r--src/Parsers/BaseParser.php34
-rw-r--r--src/Parsers/IntegerParser.php2
-rw-r--r--src/Parsers/StringParser.php2
3 files changed, 36 insertions, 2 deletions
diff --git a/src/Parsers/BaseParser.php b/src/Parsers/BaseParser.php
new file mode 100644
index 0000000..d36508d
--- /dev/null
+++ b/src/Parsers/BaseParser.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Copyright 2020 “EPGService”
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an “AS IS” BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+declare(strict_types = 1);
+
+namespace EPGService\Parsers;
+
+/**
+ * @copyright Copyright © 2020 “Valentin Popov” <info@valentineus.link>
+ * @license http://www.apache.org/licenses/LICENSE-2.0
+ * @package EPGService\Parsers
+ */
+interface BaseParser {
+ /**
+ * @param mixed $value
+ *
+ * @return mixed
+ */
+ public static function get($value);
+}
diff --git a/src/Parsers/IntegerParser.php b/src/Parsers/IntegerParser.php
index 3eb4ea1..ba89315 100644
--- a/src/Parsers/IntegerParser.php
+++ b/src/Parsers/IntegerParser.php
@@ -24,7 +24,7 @@ namespace EPGService\Parsers;
* @license http://www.apache.org/licenses/LICENSE-2.0
* @package EPGService\Parsers
*/
-final class IntegerParser {
+final class IntegerParser implements BaseParser {
/**
* @param mixed $value
*
diff --git a/src/Parsers/StringParser.php b/src/Parsers/StringParser.php
index c22d8f1..8473106 100644
--- a/src/Parsers/StringParser.php
+++ b/src/Parsers/StringParser.php
@@ -24,7 +24,7 @@ namespace EPGService\Parsers;
* @license http://www.apache.org/licenses/LICENSE-2.0
* @package EPGService\Parsers
*/
-final class StringParser {
+final class StringParser implements BaseParser {
/**
* @param $value
*