Skip to content

Commit c2caf73

Browse files
committed
Accidentally left the PCOV env file to defaul true and moved Pcov documentation section below all xdebug entries
1 parent b2de93c commit c2caf73

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

DOCUMENTATION/content/documentation/index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,22 @@ For information on how to configure xDebug with your IDE and work it out, check
299299

300300

301301

302+
<br>
303+
<a name="Control-xDebug"></a>
304+
## Start/Stop xDebug:
305+
306+
By installing xDebug, you are enabling it to run on startup by default.
307+
308+
To control the behavior of xDebug (in the `php-fpm` Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):
309+
310+
- Stop xDebug from running by default: `.php-fpm/xdebug stop`.
311+
- Start xDebug by default: `.php-fpm/xdebug start`.
312+
- See the status: `.php-fpm/xdebug status`.
313+
314+
Note: If `.php-fpm/xdebug` doesn't execute and gives `Permission Denied` error the problem can be that file `xdebug` doesn't have execution access. This can be fixed by running `chmod` command with desired access permissions.
315+
316+
317+
302318
<br>
303319
<a name="Install-pcov"></a>
304320
## Install pcov
@@ -322,22 +338,6 @@ of the [README](https://github.com/krakjoe/pcov)
322338

323339

324340

325-
<br>
326-
<a name="Control-xDebug"></a>
327-
## Start/Stop xDebug:
328-
329-
By installing xDebug, you are enabling it to run on startup by default.
330-
331-
To control the behavior of xDebug (in the `php-fpm` Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):
332-
333-
- Stop xDebug from running by default: `.php-fpm/xdebug stop`.
334-
- Start xDebug by default: `.php-fpm/xdebug start`.
335-
- See the status: `.php-fpm/xdebug status`.
336-
337-
Note: If `.php-fpm/xdebug` doesn't execute and gives `Permission Denied` error the problem can be that file `xdebug` doesn't have execution access. This can be fixed by running `chmod` command with desired access permissions.
338-
339-
340-
341341
<br>
342342
<a name="Install-phpdbg"></a>
343343
## Install phpdbg

env-example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ WORKSPACE_INSTALL_PHPREDIS=true
9797
WORKSPACE_INSTALL_WORKSPACE_SSH=false
9898
WORKSPACE_INSTALL_SUBVERSION=false
9999
WORKSPACE_INSTALL_XDEBUG=false
100-
WORKSPACE_INSTALL_PCOV=true
100+
WORKSPACE_INSTALL_PCOV=false
101101
WORKSPACE_INSTALL_PHPDBG=false
102102
WORKSPACE_INSTALL_SSH2=false
103103
WORKSPACE_INSTALL_LDAP=false

0 commit comments

Comments
 (0)