Completed
Push — master ( b21f56...2f7e95 )
by Colin
02:07
created

No notable changes

There were no notable changes in the changeset which was inspected.

10
▶   ± 0
Test Coverage
95%
▶ ±0%
Head
Colin Viebrock  
fix pathing
Base
Colin Viebrock  
Sensiolabs cleanup diff --git a/.gitignore b/.gitignore index 2954063..2b121e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ /build /vendor composer.lock -.DS_Store diff --git a/phpunit.xml b/phpunit.xml index 05f7b98..5b7b70d 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,32 +1,32 @@ -<?xml version="1.0" encoding="UTF-8"?> -<phpunit - backupGlobals="false" - backupStaticAttributes="false" - bootstrap="vendor/autoload.php" - colors="true" - convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" - processIsolation="false" - stopOnFailure="false" - syntaxCheck="false" - verbose="true" -> - <testsuites> - <testsuite name="Taggable Test Suite"> - <directory suffix=".php">./tests/</directory> - </testsuite> - </testsuites> - <filter> - <whitelist> - <directory suffix=".php">src/</directory> - </whitelist> - </filter> - <logging> - <log type="tap" target="build/report.tap"/> - <log type="junit" target="build/report.junit.xml"/> - <log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/> - <log type="coverage-text" target="build/coverage.txt"/> - <log type="coverage-clover" target="build/clover.xml"/> - </logging> -</phpunit> +<?xml version="1.0" encoding="UTF-8"?> +<phpunit + backupGlobals="false" + backupStaticAttributes="false" + bootstrap="vendor/autoload.php" + colors="true" + convertErrorsToExceptions="true" + convertNoticesToExceptions="true" + convertWarningsToExceptions="true" + processIsolation="false" + stopOnFailure="false" + syntaxCheck="false" + verbose="true" +> + <testsuites> + <testsuite name="Taggable Test Suite"> + <directory suffix=".php">./tests/</directory> + </testsuite> + </testsuites> + <filter> + <whitelist> + <directory suffix=".php">src/</directory> + </whitelist> + </filter> + <logging> + <log type="tap" target="build/report.tap"/> + <log type="junit" target="build/report.junit.xml"/> + <log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/> + <log type="coverage-text" target="build/coverage.txt"/> + <log type="coverage-clover" target="build/clover.xml"/> + </logging> +</phpunit> diff --git a/src/Taggable.php b/src/Taggable.php index 49ac7ad..3ddecf2 100644 --- a/src/Taggable.php +++ b/src/Taggable.php @@ -3,7 +3,6 @@ use Cviebrock\EloquentTaggable\Models\Tag; use Cviebrock\EloquentTaggable\Services\TagService; use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\Collection;