Skip to content

Commit 5960fc7

Browse files
committed
WIP
1 parent 464a115 commit 5960fc7

File tree

7 files changed

+1036
-1
lines changed

7 files changed

+1036
-1
lines changed

.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
/.github export-ignore
44
/.gitattributes export-ignore
55
/.gitignore export-ignore
6+
/.phpcs.xml export-ignore
7+
/.phpmd.xml export-ignore
8+
/.phpunit.xml export-ignore
9+
/.phpunit.xml.dist export-ignore
610
/.scrutinizer.yml export-ignore
711
/.travis.yml export-ignore
812
/build
913
/composer.lock
1014
/database.yml export-ignore
1115
/phpunit.xml export-ignore
1216
/tests export-ignore
17+
/tools export-ignore
1318
/vendor

.phive/phars.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phive xmlns="https://phar.io/phive">
3+
<phar name="phpmd" version="^2.7.0" installed="2.7.0" location="./tools/phpmd" copy="false"/>
4+
<phar name="phpcs" version="^3.5.6" installed="3.5.6" location="./tools/phpcs" copy="false"/>
5+
<phar name="phpunit" version="^9.3.10" installed="9.3.10" location="./tools/phpunit" copy="false"/>
6+
</phive>

phive

+1,021
Large diffs are not rendered by default.

src/CacheKey.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ protected function getBindingsSlug() : string
359359
if (! method_exists($this->model, 'query')) {
360360
return '';
361361
}
362-
362+
363363
return Arr::query($this->model->query()->getBindings());
364364
}
365365
}

tools/phpcs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/forge/.phive/phars/phpcs-3.5.6.phar

tools/phpmd

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/forge/.phive/phars/phpmd-2.7.0.phar

tools/phpunit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/forge/.phive/phars/phpunit-9.3.10.phar

0 commit comments

Comments
 (0)