Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 0ebc3ba

Browse files
committed
Use $_SERVER instead of $_ENV for PHPUnit
1 parent 5d0ed1e commit 0ebc3ba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2019, Rinvex LLC,
3+
Copyright (c) 2016-2020, Rinvex LLC,
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ Rinvex is a software solutions startup, specialized in integrated enterprise sol
103103

104104
This software is released under [The MIT License (MIT)](LICENSE).
105105

106-
(c) 2016-2019 Rinvex LLC, Some rights reserved.
106+
(c) 2016-2020 Rinvex LLC, Some rights reserved.

phpunit.xml.dist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
<log type="coverage-clover" target="build/logs/clover.xml" />
3535
</logging>
3636
<php>
37-
<env name="APP_ENV" value="testing" />
38-
<env name="CACHE_DRIVER" value="array" />
39-
<env name="SESSION_DRIVER" value="array" />
40-
<env name="QUEUE_CONNECTION" value="sync" />
41-
<env name="DB_CONNECTION" value="sqlite" />
42-
<env name="DB_DATABASE" value=":memory:" />
37+
<server name="APP_ENV" value="testing" />
38+
<server name="CACHE_DRIVER" value="array" />
39+
<server name="SESSION_DRIVER" value="array" />
40+
<server name="QUEUE_CONNECTION" value="sync" />
41+
<server name="DB_CONNECTION" value="sqlite" />
42+
<server name="DB_DATABASE" value=":memory:" />
4343
</php>
4444
</phpunit>

0 commit comments

Comments
 (0)