forked from pradosoft/prado
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pradosoft#872 Added missing class properties and floor($time) for los…
…s of precision From being pushed to upgrade from PHP 8.0 to PHP 8.1+ today, I moved to 8.2. There were a few minor errors and this patches those errors.
- Loading branch information
Showing
6 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
./vendor/bin/php-cs-fixer fix | ||
./vendor/bin/phpstan analyse framework --memory-limit=512M | ||
composer unittest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ class TUriTest extends PHPUnit\Framework\TestCase | |
{ | ||
const URISTR = 'http://login:p@ssw0rd:[email protected]:80/demos/quickstart/index.php?page=test¶m1=test2#anchor'; | ||
|
||
protected $uri; | ||
|
||
protected function setUp(): void | ||
{ | ||
$this->uri = new TUri(self::URISTR); | ||
|