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:
2024-04-11 19:52:37 +05:00
parent e41f63f94f
commit b7d0a2453e
314 changed files with 5 additions and 5 deletions

View File

@@ -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