This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 122
3.0.0 sql type hints #373
Open
guidofaecke
wants to merge
49
commits into
zendframework:3.0.0
Choose a base branch
from
guidofaecke:3.0.0_SQL_typeHints
base: 3.0.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
3.0.0 sql type hints #373
Changes from 36 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
91d68c4
Added some typehints
guidofaecke 42e8770
Added access modifiers for class constants
arueckauer ae5c556
Updated return type declarations
arueckauer 4a084fa
Use ::class instead
arueckauer bda3610
Use short list syntax
arueckauer fdc6130
Use origin function
arueckauer 4524104
Removed misusage of array_push()
arueckauer a55d7fd
Removed assignments where written value is same as default one
arueckauer 18986fc
Removed superfluous null assignments on class property initialization
arueckauer e4868fa
Write single-line comments with @var as one-liners
arueckauer b9ce140
Updated file header comment, added strict_types declaration
arueckauer 6ebaf9d
Removed empty comment lines
arueckauer 4ec4ee5
Updated argument and return type declarations, removed method comment…
arueckauer 788d1bc
Treat string class properties as not nullable where possible
arueckauer f97e6f7
Comment tags @param, @throws and @return should not be aligned or con…
arueckauer 9565442
Revert short list syntax where incompatible
arueckauer 9af735e
Ignore IDE files
arueckauer e057005
Ensure declarations are compatible with super, noted where type hints…
arueckauer 2c385f7
Updated return type in DocBlock
arueckauer c2ab9c3
Fixed case mismatch
arueckauer 0f8f3f4
Use self class referencing
arueckauer f4feef2
Use single quotes
arueckauer 6000d50
Remove unnecessary parentheses
arueckauer 5866062
Remove unnecessary type casting, as the argument is of needed type
arueckauer 31c14f6
Place namespace definition on its own line
arueckauer 5f115d1
Use compact()
arueckauer a60c5c2
Converted elseif to if-branch (clearer intention, lower complexity nu…
arueckauer 402e21b
Define one parameter per line in multi-line function declarations
arueckauer 552623f
Removed unused imports
arueckauer a5d9333
Fixed typo
arueckauer 471da0c
There must be exactly one space after a type cast
arueckauer 636167e
Nullable and optional arguments, which are marked as = null, must hav…
arueckauer 73c4a59
Removed comments which do not add valuable information
arueckauer 5bb0ad8
Revert short list syntax where incompatible
arueckauer aca883d
Removed duplicate blank lines
arueckauer 1c0ddf4
Merge pull request #1 from guidofaecke/3.0.0_SQL_typeHints
guidofaecke f94abb7
Resolving merge conflict
guidofaecke 25d7ee3
Merge remote-tracking branch 'origin/3.0.0' into 3.0.0_SQL_typeHints
guidofaecke 677d31a
Resolving merge conflict
guidofaecke 5901b66
Merge branch '3.0.0' into 3.0.0_SQL_typeHints
guidofaecke 417ca86
removed IDE/OS specifics
guidofaecke 16dbb40
fixed typehint
guidofaecke da8b22b
added parenthesis
guidofaecke 311ad6c
changed self to $this
guidofaecke 110f777
fixed column constructor
guidofaecke 65409db
alignment and use function statements
guidofaecke ac29abe
comparator
guidofaecke f748754
parenthesis fixed
guidofaecke ba08bf4
return fix
guidofaecke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea/ | ||
/clover.xml | ||
/coveralls-upload.json | ||
/docs/html/ | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't have any IDE/OS specific files/directories here. Please revert and add it to your global
.gitignore
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved