Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d5c56d0

Browse files
committed
Fix .env.example syntax
1 parent a316e21 commit d5c56d0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.env.example

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
# PHP_TAG=
99
#
1010
# Uncommnt to run tests against a different DB. Defaults to mysql.
11-
# UNISH_DB_URL: pgsql://unish:unish@postgres
12-
# UNISH_DB_URL: sqlite://sut/sites/default/files/.ht.sqlite
11+
# UNISH_DB_URL=pgsql://unish:unish@postgres
12+
# UNISH_DB_URL=sqlite://sut/sites/default/files/.ht.sqlite
1313
#
1414
# XDebug defaults to Off in the php container.
1515
# Uncomment to enable XDebug. See https://wodby.com/stacks/drupal/docs/local/xdebug/.
1616
# When Xdebug first successfully connects back to PHPStorm, you are prompted to create a Server called unish
1717
# Then you are prompted to add path mappings (its mandatory).
18-
# PHP_XDEBUG: 1
19-
# PHP_XDEBUG_DEFAULT_ENABLE: 1
20-
# PHP_IDE_CONFIG: serverName=unish
21-
# PHP_XDEBUG_REMOTE_HOST: host.docker.internal
18+
# PHP_XDEBUG=1
19+
# PHP_XDEBUG_DEFAULT_ENABLE=1
20+
# PHP_IDE_CONFIG=serverName=unish
21+
# PHP_XDEBUG_REMOTE_HOST=host.docker.internal

tests/UnishTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public function __construct($name = null, array $data = [], $dataName = '')
151151
// require_once __DIR__ . '/unish.inc';
152152
// list($unish_tmp, $unish_sandbox, $unish_drush_dir) = \unishGetPaths();
153153
$unish_sandbox = Path::join(dirname(__DIR__), 'sandbox');
154-
@mkdir($unish_sandbox);
154+
self::mkdir($unish_sandbox);
155155
$unish_cache = Path::join($unish_sandbox, 'cache');
156156

157157
self::$drush = self::getComposerRoot() . '/drush';

0 commit comments

Comments
 (0)