Skip to content

Commit 0c2b12c

Browse files
committed
style: fix new linter for natural language
1 parent 7ca6f5d commit 0c2b12c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

DOCKER_TIPS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docker system prune
3131
* `username: mariadb_user`
3232
* `password: mariadb_pass`
3333

34-
## Running Xdebug with PHPStorm alongside Docker
34+
## Running Xdebug with PhpStorm alongside Docker
3535
From Docker versions 18.03 and above, Docker creates a special DNS name that resolves
3636
to the internal IP address used by the host.
3737

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ Inside the `scripts` folder you will find one-off scripts to help with tasks.
5858

5959
## Docs
6060
* [Setting up Nginx-Proxy](docs/nginx-proxy/README.md)
61-
* [Setting up PHP Testing in PHPStorm](docs/phpstorm-docker/README.md)
61+
* [Setting up PHP Testing in PhpStorm](docs/phpstorm-docker/README.md)
6262
* [Leveraging Yii2 Shell](docs/yii2/yii-shell.md)

docs/phpstorm-docker/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# PHPStorm & Docker
1+
# PhpStorm & Docker
22

3-
The goal for this tutorial is to help containerize an application to leverage the tools within PHPStorm (Test Suite,
3+
The goal for this tutorial is to help containerize an application to leverage the tools within PhpStorm (Test Suite,
44
Coverage, etc).
55

66
To do this the following things need to happen:
77

8-
1) Setup Docker for Mac in PHPStorm.
8+
1) Setup Docker for Mac in PhpStorm.
99
2) Setup Language (PHP in this example) to use a remote interpreter.
1010
3) Fix the paths to match our standard (/code for project code)
1111
4) Setup Tests (PHPUnit or Codeception) to use a special docker-compose file.
@@ -16,7 +16,7 @@ We are assuming the following things:
1616
2) The project is already running via (docker-compose up --build)
1717
3) Some small knowledge of Docker
1818

19-
## Setup Docker for Mac in PHPStorm
19+
## Setup Docker for Mac in PhpStorm
2020

2121
Head to Preferences and go to `Build, Execution, Deployment -> Docker`. Create an item called "Docker"
2222
using the daemon option "Docker for Mac".
@@ -25,7 +25,7 @@ using the daemon option "Docker for Mac".
2525

2626
### Creating an isolated docker-compose for testing
2727

28-
In order for PHPStorm to run tests without affecting containers. You need to create a new container that matches
28+
In order for PhpStorm to run tests without affecting containers. You need to create a new container that matches
2929
whatever container your code works on.
3030

3131
For example, here a random PHP project `docker-compose-phpstorm.yml` file.
@@ -102,4 +102,4 @@ This can be shown below:
102102

103103
![phpstorm-seeing-green-test](./assets/docker-testpass.png)
104104

105-
With that you have successfully hooked the test suites, while keeping Docker inside PHPStorm.
105+
With that you have successfully hooked the test suites, while keeping Docker inside PhpStorm.

0 commit comments

Comments
 (0)