@@ -469,7 +469,7 @@ discard block |
||
| 469 | 469 | { |
| 470 | 470 | throw new RoutineLoaderException('Tag @type not found in DocBlock.'); |
| 471 | 471 | } |
| 472 | - elseif (count($tags)>1) |
|
| 472 | + elseif (count($tags) > 1) |
|
| 473 | 473 | { |
| 474 | 474 | throw new RoutineLoaderException('Multiple @type tags found in DocBlock.'); |
| 475 | 475 | } |
@@ -631,7 +631,7 @@ discard block |
||
| 631 | 631 | $key1 = $this->findFirstMatchingLine('/^\s*(as|is)\s*$/i'); |
| 632 | 632 | $key2 = $this->findFirstMatchingLine('/^\s*begin\s*$/i'); |
| 633 | 633 | |
| 634 | - if ($key1!==null && $key2!==null && $key1<$key2) |
|
| 634 | + if ($key1!==null && $key2!==null && $key1 < $key2) |
|
| 635 | 635 | { |
| 636 | 636 | $this->syntax = self::PL_SQL_SYNTAX; |
| 637 | 637 | } |
@@ -780,10 +780,10 @@ discard block |
||
| 780 | 780 | |
| 781 | 781 | $start = $this->findFirstMatchingLine('/^\s*\/\*\*\s*$/'); |
| 782 | 782 | $end = $this->findFirstMatchingLine('/^\s*\*\/\s*$/'); |
| 783 | - if ($start!==null && $end!==null && $start<$end) |
|
| 783 | + if ($start!==null && $end!==null && $start < $end) |
|
| 784 | 784 | { |
| 785 | 785 | $lines = array_slice($this->routineSourceCodeLines, $start, $end - $start + 1); |
| 786 | - $docBlock = implode(PHP_EOL, (array)$lines); |
|
| 786 | + $docBlock = implode(PHP_EOL, (array) $lines); |
|
| 787 | 787 | } |
| 788 | 788 | else |
| 789 | 789 | { |