Skip to content

Commit c9a796d

Browse files
committed
WIP
1 parent a71e3db commit c9a796d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ script:
2727
- ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
2828

2929
before_install:
30+
- composer remove codedungeon/phpunit-result-printer --no-update
3031
- composer require "orchestra/database:${ORCHESTRA_VERSION}" --no-update --dev
3132
- composer require "orchestra/testbench:${ORCHESTRA_VERSION}" --no-update --dev
3233
- composer require "orchestra/testbench-browser-kit:${ORCHESTRA_VERSION}" --no-update --dev

src/CacheKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ protected function recursiveImplode(array $items, string $glue = ",") : string
208208
{
209209
$result = "";
210210

211-
foreach ($items as $key => $value) {
211+
foreach ($items as $value) {
212212
if (is_array($value)) {
213213
$result .= $this->recursiveImplode($value, $glue);
214214

src/Console/Commands/Clear.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ protected function flushModelCache(string $option) : int
4949
return 0;
5050
}
5151

52+
/** @SuppressWarnings(PHPMD.BooleanArgumentFlag) */
5253
protected function getAllTraitsUsedByClass(
5354
string $classname,
5455
bool $autoload = true

0 commit comments

Comments
 (0)