| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class WBWSyntaxHighlighterBundle extends Bundle implements AssetsProviderInterface { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * SyntaxHighlighter version. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const SYNTAXHIGHLIGHTER_VERSION = SyntaxHighlighterInterface::SYNTAXHIGHLIGHTER_VERSION; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritDoc} |
||
| 35 | */ |
||
| 36 | public function getAssetsRelativeDirectory() { |
||
| 37 | return "/Resources/assets"; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritDoc} |
||
| 42 | */ |
||
| 43 | public function getContainerExtension() { |
||
| 45 | } |
||
| 46 | } |
||
| 47 |