Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Psalm 6 #3977

Merged
merged 33 commits into from
May 27, 2020
Merged

Psalm 6 #3977

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f4c43d5
Document actual types
greg0ire Apr 21, 2020
9a617ed
Install phpunit plugin for Psalm
greg0ire Apr 21, 2020
96d5bcc
Make return type verified and accurate
greg0ire Apr 21, 2020
a8c772d
Update phpunit
greg0ire Apr 22, 2020
befc59a
Improve phpdoc
greg0ire Apr 22, 2020
69cf6c4
Remove uneeded key
greg0ire Apr 22, 2020
8f7ea52
Use list
greg0ire Apr 22, 2020
99b542a
Use shortcut
greg0ire Apr 22, 2020
633f9e3
Suppress deliberate error
greg0ire Apr 23, 2020
f2a0ab7
Use TrimMode::UNSPECIFIED over null
greg0ire Apr 23, 2020
014ac9c
Pass the right type of argument
greg0ire Apr 23, 2020
cede6ec
Ignore issues when testing with deliberate
greg0ire Apr 23, 2020
76fc010
Make sure to pass in a string
greg0ire Apr 24, 2020
7c0e1ba
Document platform
greg0ire Apr 24, 2020
dc8d2f3
Add missing return type declarations
greg0ire Apr 24, 2020
05fcd8c
Document null as a possible type
greg0ire Apr 24, 2020
464f150
Update PHPStorm stubs
greg0ire Apr 24, 2020
3a86a6b
Use the appropriate notation for generators
greg0ire Apr 24, 2020
49bd008
Document property
greg0ire Apr 25, 2020
a6af579
Address deprecation
greg0ire Apr 25, 2020
ca5aceb
Account for columnar expected result
greg0ire Apr 25, 2020
580d139
Fix wrong phpdoc
greg0ire Apr 25, 2020
682012f
Suppress InvalidArgument error
greg0ire Apr 25, 2020
fa71f7f
Use an empty string instead of null
greg0ire Apr 25, 2020
7fc2268
Use level 6
greg0ire Apr 26, 2020
9d73084
Address warning from PHPUnit
greg0ire May 1, 2020
487b00f
Describe return type accurately
greg0ire May 1, 2020
1a4f23f
Add contract for createPlatform()'s return type
greg0ire May 3, 2020
3fa5b3e
Add missing use statement
greg0ire May 4, 2020
b0523e0
Use valid arguments
greg0ire May 4, 2020
b00a2e3
Update psalm
greg0ire May 27, 2020
9f9629c
Avoid mocking inexistent classes
greg0ire May 27, 2020
1bc66b3
Ignore error about Connection::lastInsertId()
greg0ire May 27, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@
"jetbrains/phpstorm-stubs": "^2019.1",
"nikic/php-parser": "^4.4",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.4.1",
"phpunit/phpunit": "^8.5.5",
"psalm/plugin-phpunit": "^0.10.0",
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
"vimeo/psalm": "^3.11"
"vimeo/psalm": "^3.11.4"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
Expand Down
Loading