diff options
author | Bruce Wells <phpfui@users.noreply.github.com> | 2018-09-12 21:21:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 21:21:25 +0300 |
commit | 12d41b160bbf8c26601819fcc1f7628c48bc7a00 (patch) | |
tree | c50b777d06d9e9eeff6aeb59005c389ddf9a552b /src/NXP/Classes/Token/TokenString.php | |
parent | 855ca5dfc1a6d70d9872df4b0d7bea8ba3c4c040 (diff) | |
parent | 4a672cfd94c07e1821227f27fd1edd2217685136 (diff) |
Merge pull request #1 from NeonXP/master
Merge from upstream master
Diffstat (limited to 'src/NXP/Classes/Token/TokenString.php')
-rw-r--r-- | src/NXP/Classes/Token/TokenString.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/NXP/Classes/Token/TokenString.php b/src/NXP/Classes/Token/TokenString.php new file mode 100644 index 0000000..cab0711 --- /dev/null +++ b/src/NXP/Classes/Token/TokenString.php @@ -0,0 +1,25 @@ +<?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 '"([^"]|"")*"'; + } +} |