aboutsummaryrefslogtreecommitdiff
path: root/src/NXP/Classes/Token/TokenString.php
diff options
context:
space:
mode:
authorAlexander Kiryukhin <alexander@kiryukhin.su>2019-01-11 03:27:45 +0300
committerBruce Wells <brucekwells@gmail.com>2019-01-11 03:27:45 +0300
commit76517641f79e8f0e4e5f3b620c731bf5c095df17 (patch)
treec0b03f4fa8acc12058924cbebb1511b31b6a41d8 /src/NXP/Classes/Token/TokenString.php
parentbf6204aea73441f222d5b9ebb828f9da9d6894ad (diff)
Fix single quotes parsing (#41)
* Fix single quotes parsing Fix e-mails Some small fixes * Mistake in test * More PHP versions
Diffstat (limited to 'src/NXP/Classes/Token/TokenString.php')
-rw-r--r--src/NXP/Classes/Token/TokenString.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/NXP/Classes/Token/TokenString.php b/src/NXP/Classes/Token/TokenString.php
deleted file mode 100644
index cab0711..0000000
--- a/src/NXP/Classes/Token/TokenString.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-/**
- * This file is part of the MathExecutor package
- *
- * (c) Alexander Kiryukhin
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code
- */
-
-namespace NXP\Classes\Token;
-
-/**
- * @author Bruce Wells <brucekwells@gmail.com>
- */
-class TokenString extends AbstractContainerToken
-{
- /**
- * @return string
- */
- public static function getRegex()
- {
- return '"([^"]|"")*"';
- }
-}