aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--composer.json2
-rw-r--r--tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php3
2 files changed, 4 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index bc08b015..475e000f 100644
--- a/composer.json
+++ b/composer.json
@@ -93,7 +93,7 @@
93 "symfony/phpunit-bridge": "^3.3", 93 "symfony/phpunit-bridge": "^3.3",
94 "friendsofphp/php-cs-fixer": "~2.0", 94 "friendsofphp/php-cs-fixer": "~2.0",
95 "m6web/redis-mock": "^2.0", 95 "m6web/redis-mock": "^2.0",
96 "dama/doctrine-test-bundle": "^4.0" 96 "dama/doctrine-test-bundle": "^5.0"
97 }, 97 },
98 "scripts": { 98 "scripts": {
99 "post-cmd": [ 99 "post-cmd": [
diff --git a/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php b/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php
index 5806bd4d..59529362 100644
--- a/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php
+++ b/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php
@@ -17,6 +17,9 @@ class InstallCommandMock extends InstallCommand
17{ 17{
18 protected function runCommand($command, $parameters = []) 18 protected function runCommand($command, $parameters = [])
19 { 19 {
20 // echo $command."\n";
21 var_dump($command);
22
20 return $this; 23 return $this;
21 } 24 }
22} 25}