@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | class CodeNode extends Base |
| 13 | 13 | { |
| 14 | - public function render() |
|
| 14 | + public function render () |
|
| 15 | 15 | { |
| 16 | 16 | return '<pre><code class="hljs language-' . $this->language . '">' . $this->value . '</code></pre>'; |
| 17 | 17 | } |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | |
| 13 | 13 | class WatchCommand extends BuildableCommand |
| 14 | 14 | { |
| 15 | - protected function configure() |
|
| 15 | + protected function configure () |
|
| 16 | 16 | { |
| 17 | 17 | parent::configure(); |
| 18 | 18 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | $this->setDescription('Watch the source folder and rebuild the website as files change'); |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | - protected function execute(InputInterface $input, OutputInterface $output) |
|
| 23 | + protected function execute (InputInterface $input, OutputInterface $output) |
|
| 24 | 24 | { |
| 25 | 25 | parent::execute($input, $output); |
| 26 | 26 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | /** |
| 17 | 17 | * {@inheritdoc} |
| 18 | 18 | */ |
| 19 | - protected function configure() |
|
| 19 | + protected function configure () |
|
| 20 | 20 | { |
| 21 | 21 | parent::configure(); |
| 22 | 22 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | /** |
| 28 | 28 | * {@inheritdoc} |
| 29 | 29 | */ |
| 30 | - protected function execute(InputInterface $input, OutputInterface $output) |
|
| 30 | + protected function execute (InputInterface $input, OutputInterface $output) |
|
| 31 | 31 | { |
| 32 | 32 | parent::execute($input, $output); |
| 33 | 33 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | /** |
| 41 | 41 | * {@inheritdoc} |
| 42 | 42 | */ |
| 43 | - protected function configure() |
|
| 43 | + protected function configure () |
|
| 44 | 44 | { |
| 45 | 45 | $this->fs = new Filesystem(); |
| 46 | 46 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | /** |
| 54 | 54 | * {@inheritdoc} |
| 55 | 55 | */ |
| 56 | - protected function execute(InputInterface $input, OutputInterface $output) |
|
| 56 | + protected function execute (InputInterface $input, OutputInterface $output) |
|
| 57 | 57 | { |
| 58 | 58 | $this->website = new Website($output); |
| 59 | 59 | $this->website->setConfLess($input->getOption('no-conf')); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * |
| 66 | 66 | * @param InputInterface $input |
| 67 | 67 | */ |
| 68 | - protected function configureBuild(InputInterface $input) |
|
| 68 | + protected function configureBuild (InputInterface $input) |
|
| 69 | 69 | { |
| 70 | 70 | $this->website->setConfiguration($input->getOption('conf')); |
| 71 | 71 | $this->website->setSafeMode($input->getOption('safe')); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | * |
| 62 | 62 | * @param array $rawFrontMatter |
| 63 | 63 | */ |
| 64 | - public function __construct(&$rawFrontMatter) |
|
| 64 | + public function __construct (&$rawFrontMatter) |
|
| 65 | 65 | { |
| 66 | 66 | $this->expansionUsed = false; |
| 67 | 67 | $this->nestingLevel = 0; |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * |
| 79 | 79 | * @return bool |
| 80 | 80 | */ |
| 81 | - public function hasExpansion() |
|
| 81 | + public function hasExpansion () |
|
| 82 | 82 | { |
| 83 | 83 | return $this->expansionUsed; |
| 84 | 84 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | /** |
| 91 | 91 | * Special treatment for some FrontMatter variables. |
| 92 | 92 | */ |
| 93 | - private function handleSpecialFrontMatter() |
|
| 93 | + private function handleSpecialFrontMatter () |
|
| 94 | 94 | { |
| 95 | 95 | $this->handleDateField(); |
| 96 | 96 | } |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | /** |
| 99 | 99 | * Special treatment for the `date` field in FrontMatter that creates three new variables: year, month, day. |
| 100 | 100 | */ |
| 101 | - private function handleDateField() |
|
| 101 | + private function handleDateField () |
|
| 102 | 102 | { |
| 103 | 103 | if (!isset($this->frontMatter['date'])) |
| 104 | 104 | { |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * |
| 127 | 127 | * @param array $yaml |
| 128 | 128 | */ |
| 129 | - private function evaluateBlock(&$yaml) |
|
| 129 | + private function evaluateBlock (&$yaml) |
|
| 130 | 130 | { |
| 131 | 131 | ++$this->nestingLevel; |
| 132 | 132 | |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | * |
| 166 | 166 | * @return array |
| 167 | 167 | */ |
| 168 | - private function evaluateExpandableField($key, $fmStatement) |
|
| 168 | + private function evaluateExpandableField ($key, $fmStatement) |
|
| 169 | 169 | { |
| 170 | 170 | if (!is_array($fmStatement)) |
| 171 | 171 | { |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | * |
| 204 | 204 | * @return array |
| 205 | 205 | */ |
| 206 | - private function evaluateArrayType($frontMatterKey, $expandableValue, $arrayVariableNames) |
|
| 206 | + private function evaluateArrayType ($frontMatterKey, $expandableValue, $arrayVariableNames) |
|
| 207 | 207 | { |
| 208 | 208 | if (!is_array($expandableValue)) |
| 209 | 209 | { |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * |
| 252 | 252 | * @return string The final string with variables evaluated |
| 253 | 253 | */ |
| 254 | - private function evaluateBasicType($key, $string, $ignoreArrays = false) |
|
| 254 | + private function evaluateBasicType ($key, $string, $ignoreArrays = false) |
|
| 255 | 255 | { |
| 256 | 256 | $variables = $this->getFrontMatterVariables($string); |
| 257 | 257 | |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | * |
| 287 | 287 | * @return string[] |
| 288 | 288 | */ |
| 289 | - private function getFrontMatterVariables($string) |
|
| 289 | + private function getFrontMatterVariables ($string) |
|
| 290 | 290 | { |
| 291 | 291 | $variables = array(); |
| 292 | 292 | |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | * |
| 308 | 308 | * @return mixed |
| 309 | 309 | */ |
| 310 | - private function getVariableValue($key, $varName) |
|
| 310 | + private function getVariableValue ($key, $varName) |
|
| 311 | 311 | { |
| 312 | 312 | if (!isset($this->frontMatter[$varName])) |
| 313 | 313 | { |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | * |
| 327 | 327 | * @return bool|\DateTime |
| 328 | 328 | */ |
| 329 | - private function castDateTimeTimezone($epochTime) |
|
| 329 | + private function castDateTimeTimezone ($epochTime) |
|
| 330 | 330 | { |
| 331 | 331 | $timezone = new \DateTimeZone(date_default_timezone_get()); |
| 332 | 332 | $value = \DateTime::createFromFormat('U', $epochTime); |
@@ -340,7 +340,7 @@ discard block |
||
| 340 | 340 | * |
| 341 | 341 | * @return bool|\DateTime |
| 342 | 342 | */ |
| 343 | - private function guessDateTime($guess) |
|
| 343 | + private function guessDateTime ($guess) |
|
| 344 | 344 | { |
| 345 | 345 | if ($guess instanceof \DateTime) |
| 346 | 346 | { |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @param string $string |
| 39 | 39 | */ |
| 40 | - public function __construct($string) |
|
| 40 | + public function __construct ($string) |
|
| 41 | 41 | { |
| 42 | 42 | $this->evaluated = $string; |
| 43 | 43 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | /** |
| 46 | 46 | * @return string |
| 47 | 47 | */ |
| 48 | - public function __toString() |
|
| 48 | + public function __toString () |
|
| 49 | 49 | { |
| 50 | 50 | return $this->getEvaluated(); |
| 51 | 51 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * @return string |
| 60 | 60 | */ |
| 61 | - public function getEvaluated() |
|
| 61 | + public function getEvaluated () |
|
| 62 | 62 | { |
| 63 | 63 | return $this->evaluated; |
| 64 | 64 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | * |
| 72 | 72 | * @param string $string |
| 73 | 73 | */ |
| 74 | - public function setEvaluated($string) |
|
| 74 | + public function setEvaluated ($string) |
|
| 75 | 75 | { |
| 76 | 76 | $this->evaluated = $string; |
| 77 | 77 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @return string[] |
| 83 | 83 | */ |
| 84 | - public function getIterators() |
|
| 84 | + public function getIterators () |
|
| 85 | 85 | { |
| 86 | 86 | return $this->iterators; |
| 87 | 87 | } |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @param string $variableName |
| 95 | 95 | * @param string|int $variableValue |
| 96 | 96 | */ |
| 97 | - public function setIterator($variableName, $variableValue) |
|
| 97 | + public function setIterator ($variableName, $variableValue) |
|
| 98 | 98 | { |
| 99 | 99 | $this->iterators[$variableName] = $variableValue; |
| 100 | 100 | } |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | private $lineNumber; |
| 16 | 16 | private $filePath; |
| 17 | 17 | |
| 18 | - public function __construct($message = '', $code = 0, \Exception $previous = null, $path = '', $line = -1) |
|
| 18 | + public function __construct ($message = '', $code = 0, \Exception $previous = null, $path = '', $line = -1) |
|
| 19 | 19 | { |
| 20 | 20 | parent::__construct($message, $code, $previous); |
| 21 | 21 | |
@@ -23,17 +23,17 @@ discard block |
||
| 23 | 23 | $this->lineNumber = $line; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - public function getLineNumber() |
|
| 26 | + public function getLineNumber () |
|
| 27 | 27 | { |
| 28 | 28 | return $this->lineNumber; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - public function getPath() |
|
| 31 | + public function getPath () |
|
| 32 | 32 | { |
| 33 | 33 | return $this->filePath; |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - public static function castException(\Exception $e, $filePath) |
|
| 36 | + public static function castException (\Exception $e, $filePath) |
|
| 37 | 37 | { |
| 38 | 38 | $lineNumber = ($e instanceof \Twig_Error_Syntax) ? $e->getTemplateLine() : -1; |
| 39 | 39 | |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | |
| 10 | 10 | class OrderFilter |
| 11 | 11 | { |
| 12 | - public function __invoke($array, $key, $order = 'ASC') |
|
| 12 | + public function __invoke ($array, $key, $order = 'ASC') |
|
| 13 | 13 | { |
| 14 | 14 | if (!is_array($array)) |
| 15 | 15 | { |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | return $array; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - public static function get() |
|
| 37 | + public static function get () |
|
| 38 | 38 | { |
| 39 | 39 | return new \Twig_SimpleFilter('order', new self()); |
| 40 | 40 | } |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | |
| 10 | 10 | class GroupByFilter |
| 11 | 11 | { |
| 12 | - public function __invoke($array, $sortKey) |
|
| 12 | + public function __invoke ($array, $sortKey) |
|
| 13 | 13 | { |
| 14 | 14 | $arr = array(); |
| 15 | 15 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | return $arr; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - public static function get() |
|
| 41 | + public static function get () |
|
| 42 | 42 | { |
| 43 | 43 | return new \Twig_SimpleFilter('group', new self()); |
| 44 | 44 | } |