forked from nuxwin/JsonRPC
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add false pseudo type to smd builder
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,6 @@ | |
use ReflectionProperty; | ||
use Reflector; | ||
|
||
|
||
/** | ||
* Parse the docblock of a function or method | ||
* @author Paul Scott <[email protected]> | ||
|
@@ -110,7 +109,7 @@ protected function parseComment($comment) | |
if (self::isTagged($line)) { | ||
$b++; | ||
$blocks[] = array(); | ||
} else if ($b == -1) { | ||
} elseif ($b == -1) { | ||
$b = 0; | ||
$blocks[] = array(); | ||
} | ||
|
@@ -275,4 +274,4 @@ public function tagMerge($tag) | |
{ | ||
return $this->hasTag($tag) ? array_merge_recursive($this->tags[$tag]) : null; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters