Skip to content

Commit 63813e6

Browse files
committed
updates
1 parent cd38958 commit 63813e6

File tree

6 files changed

+20
-72
lines changed

6 files changed

+20
-72
lines changed

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,15 @@
55
#
66
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
77

8-
/vendor
8+
# IDE
9+
.idea/
10+
*.iml
11+
12+
# local tests
13+
.local/
14+
.phalcon/
15+
dummy/
16+
default/
17+
18+
# composer
19+
vendor/

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"codeception/specify": "^1.2",
4949
"codeception/verify": "^1.2",
5050
"squizlabs/php_codesniffer": "^3.7",
51-
"phalcon/ide-stubs": "^5.0.0",
5251
"vimeo/psalm": "^4.6",
5352
"codeception/module-phpbrowser": "^1.0",
5453
"codeception/module-filesystem": "^1.0",

composer.lock

Lines changed: 2 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ services:
1010
depends_on:
1111
- service_mysql
1212
- service_postgres
13+
links:
14+
- service_mysql
15+
- service_postgres
1316

1417
service_nginx:
1518
image: nginx:alpine

dummy/.gitignore

100644100755
File mode changed.

src/Commands/CommandsException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212

1313
namespace Phalcon\DevTools\Commands;
1414

15+
use Exception;
16+
1517
/**
1618
* Commands Exception
1719
*/
18-
class CommandsException extends \Exception
20+
class CommandsException extends Exception
1921
{
2022
}

0 commit comments

Comments
 (0)