/
proc
/
self
/
root
/
home
/
old_henza
/
server
/
vendor
/
thunderer
/
shortcode
/
src
/
Syntax
/
File Upload :
llllll
Current File: //proc/self/root/home/old_henza/server/vendor/thunderer/shortcode/src/Syntax/Syntax.php
<?php namespace Thunder\Shortcode\Syntax; /** * @author Tomasz Kowalczyk <tomasz@kowalczyk.cc> */ final class Syntax implements SyntaxInterface { private $openingTag; private $closingTag; private $closingTagMarker; private $parameterValueSeparator; private $parameterValueDelimiter; public function __construct( $openingTag = null, $closingTag = null, $closingTagMarker = null, $parameterValueSeparator = null, $parameterValueDelimiter = null ) { $this->openingTag = $openingTag; $this->closingTag = $closingTag; $this->closingTagMarker = $closingTagMarker; $this->parameterValueSeparator = $parameterValueSeparator; $this->parameterValueDelimiter = $parameterValueDelimiter; } public function getOpeningTag() { return $this->openingTag ?: '['; } public function getClosingTag() { return $this->closingTag ?: ']'; } public function getClosingTagMarker() { return $this->closingTagMarker ?: '/'; } public function getParameterValueSeparator() { return $this->parameterValueSeparator ?: '='; } public function getParameterValueDelimiter() { return $this->parameterValueDelimiter ?: '"'; } }
Copyright ©2k19 -
Hexid
|
Tex7ure