Moved from "app/src" to "app/application".
Otherwise phpstorm doesn't understand the paths correctly. He thinks that this is not a complete application, but a package. And when creating a class, the namespace indicates “app” with a small letter, but should be “App”.
This commit is contained in:
@@ -12,7 +12,7 @@ services:
|
||||
ports:
|
||||
- ${DOCKER_APP_PORT}:9000
|
||||
volumes:
|
||||
- ./app/src:/var/www/html
|
||||
- ./app/application:/var/www/html
|
||||
app-redis:
|
||||
image: redis:3.0-alpine
|
||||
|
||||
@@ -54,7 +54,7 @@ services:
|
||||
target: ARTISAN
|
||||
user: "${UID}:${GID}"
|
||||
volumes:
|
||||
- ./app/src:/var/www/html
|
||||
- ./app/application:/var/www/html
|
||||
|
||||
composer:
|
||||
build:
|
||||
@@ -63,7 +63,7 @@ services:
|
||||
target: COMPOSER
|
||||
user: "${UID}:${GID}"
|
||||
volumes:
|
||||
- ./app/src:/var/www/html
|
||||
- ./app/application:/var/www/html
|
||||
|
||||
npm:
|
||||
build:
|
||||
@@ -72,4 +72,4 @@ services:
|
||||
target: NPM
|
||||
user: "${UID}:${GID}"
|
||||
volumes:
|
||||
- ./app/src:/var/www/html
|
||||
- ./app/application:/var/www/html
|
||||
|
Reference in New Issue
Block a user