Skip to content

Commit

Permalink
Changed Internals, added isEmpty()
Browse files Browse the repository at this point in the history
tags are now stored in a collection and sugar-methods are used in it,
instead of ugly php array stuff
  • Loading branch information
gossi committed Nov 4, 2014
1 parent 63dd0f9 commit ac0be8f
Show file tree
Hide file tree
Showing 8 changed files with 449 additions and 256 deletions.
39 changes: 21 additions & 18 deletions .buildpath
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="src" path="src"/>
<buildpathentry kind="src" path="vendor/michelf/php-markdown"/>
<buildpathentry kind="src" path="vendor/phpunit/php-text-template/Text"/>
<buildpathentry kind="src" path="vendor/sebastian/comparator/src"/>
<buildpathentry kind="src" path="vendor/symfony/yaml"/>
<buildpathentry kind="src" path="vendor/phpunit/phpunit-mock-objects/src"/>
<buildpathentry kind="src" path="vendor/gossi/collection/src"/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
<buildpathentry kind="src" path="vendor/symfony/filesystem"/>
<buildpathentry kind="src" path="vendor/phpunit/php-token-stream/src"/>
<buildpathentry kind="src" path="vendor/sebastian/version/src"/>
<buildpathentry kind="src" path="vendor/phpunit/phpunit/src"/>
<buildpathentry kind="src" path="vendor/pimple/pimple/lib"/>
<buildpathentry kind="src" path="vendor/nikic/php-parser/lib"/>
<buildpathentry kind="src" path="vendor/composer"/>
<buildpathentry kind="src" path="vendor/doctrine/instantiator/src"/>
<buildpathentry kind="src" path="vendor/sami/sami"/>
<buildpathentry kind="src" path="vendor/phpunit/php-text-template/Text"/>
<buildpathentry kind="src" path="vendor/phpunit/php-timer/PHP"/>
<buildpathentry kind="src" path="vendor/symfony/finder"/>
<buildpathentry kind="src" path="vendor/phpunit/php-code-coverage/src"/>
<buildpathentry kind="src" path="vendor/sebastian/diff/src"/>
<buildpathentry kind="src" path="vendor/sebastian/environment/src"/>
<buildpathentry kind="src" path="vendor/phpunit/php-token-stream/PHP"/>
<buildpathentry kind="src" path="vendor/gossi/common/src"/>
<buildpathentry kind="src" path="vendor/phpunit/php-timer/PHP"/>
<buildpathentry kind="src" path="vendor/sebastian/exporter/src"/>
<buildpathentry kind="src" path="vendor/phpunit/phpunit-mock-objects/src"/>
<buildpathentry kind="src" path="vendor/phpunit/php-code-coverage/src"/>
<buildpathentry kind="src" path="vendor/symfony/yaml"/>
<buildpathentry kind="src" path="vendor/sebastian/version/src"/>
<buildpathentry kind="src" path="tests"/>
<buildpathentry kind="src" path="vendor/phpunit/php-file-iterator/File"/>
<buildpathentry kind="src" path="vendor/nikic/php-parser/lib"/>
<buildpathentry kind="src" path="vendor/twig/twig/lib"/>
<buildpathentry kind="src" path="vendor/phpunit/phpunit/src"/>
<buildpathentry kind="src" path="vendor/sebastian/comparator/src"/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
<buildpathentry kind="src" path="vendor/symfony/filesystem"/>
<buildpathentry kind="src" path="vendor/composer"/>
<buildpathentry kind="src" path="vendor/symfony/process"/>
<buildpathentry kind="src" path="vendor/michelf/php-markdown"/>
<buildpathentry kind="src" path="vendor/phpunit/php-file-iterator/File"/>
<buildpathentry kind="src" path="vendor/sebastian/environment/src"/>
<buildpathentry kind="src" path="vendor/symfony/finder"/>
<buildpathentry kind="src" path="vendor/symfony/console"/>
<buildpathentry kind="src" path="src"/>
</buildpath>
2 changes: 2 additions & 0 deletions .settings/org.eclipse.wst.validation.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
disabled=06vendor
eclipse.preferences.version=1
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "gossi/docblock",
"type" : "library",
"description" : "PHP DocBlock parser and generator. An API to read and write DocBlocks.",
"description" : "PHP Docblock parser and generator. An API to read and write Docblocks.",
"license" : "MIT",
"keywords" : [
"docblock",
Expand All @@ -19,7 +19,8 @@
}
},
"require" : {
"php" : ">=5.4"
"php" : ">=5.4",
"gossi/collection" : "~1"
},
"require-dev" : {
"phpunit/phpunit" : "~4",
Expand Down
Loading

0 comments on commit ac0be8f

Please sign in to comment.