|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the league/commonmark-ext-smartpunct package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Colin O'Dell <[email protected]> |
|
7
|
|
|
* |
|
8
|
|
|
* Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) |
|
9
|
|
|
* - (c) John MacFarlane |
|
10
|
|
|
* |
|
11
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
12
|
|
|
* file that was distributed with this source code. |
|
13
|
|
|
*/ |
|
14
|
|
|
|
|
15
|
|
|
namespace League\CommonMark\Ext\SmartPunct; |
|
16
|
|
|
|
|
17
|
|
|
use League\CommonMark\Extension\SmartPunct\Quote; |
|
|
|
|
|
|
18
|
|
|
use League\CommonMark\Extension\SmartPunct\QuoteParser as CoreParser; |
|
19
|
|
|
use League\CommonMark\Inline\Parser\InlineParserInterface; |
|
20
|
|
|
use League\CommonMark\InlineParserContext; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* @deprecated The league/commonmark-ext-smartpunct extension is now deprecated. All functionality has been moved into league/commonmark 1.3+, so use that instead. |
|
24
|
|
|
*/ |
|
25
|
|
|
final class QuoteParser implements InlineParserInterface |
|
26
|
|
|
{ |
|
27
|
|
|
public const DOUBLE_QUOTES = [Quote::DOUBLE_QUOTE, Quote::DOUBLE_QUOTE_OPENER, Quote::DOUBLE_QUOTE_CLOSER]; |
|
28
|
|
|
public const SINGLE_QUOTES = [Quote::SINGLE_QUOTE, Quote::SINGLE_QUOTE_OPENER, Quote::SINGLE_QUOTE_CLOSER]; |
|
29
|
|
|
|
|
30
|
|
|
private $coreParser; |
|
31
|
|
|
|
|
32
|
|
|
public function __construct() |
|
33
|
|
|
{ |
|
34
|
|
|
@trigger_error(sprintf('league/commonmark-ext-smartpunct is deprecated; use %s from league/commonmark 1.3+ instead', CoreParser::class), E_USER_DEPRECATED); |
|
|
|
|
|
|
35
|
|
|
$this->coreParser = new CoreParser(); |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* @return string[] |
|
40
|
|
|
*/ |
|
41
|
|
|
public function getCharacters(): array |
|
42
|
|
|
{ |
|
43
|
|
|
return $this->coreParser->getCharacters(); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* Normalizes any quote characters found and manually adds them to the delimiter stack |
|
48
|
|
|
* |
|
49
|
|
|
* @param InlineParserContext $inlineContext |
|
50
|
|
|
* |
|
51
|
|
|
* @return bool |
|
52
|
|
|
*/ |
|
53
|
|
|
public function parse(InlineParserContext $inlineContext): bool |
|
54
|
|
|
{ |
|
55
|
|
|
return $this->coreParser->parse($inlineContext); |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
|
Let’s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let’s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: