Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Refactor of Zend\Db\TableGateway for 3.0.0 #372

Open
wants to merge 33 commits into
base: 3.0.0
Choose a base branch
from
Open
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
aff51f6
Updated file header comment, added strict_types declaration
arueckauer Mar 14, 2019
da240f7
Removed DocBlock for non-existing argument
arueckauer Mar 14, 2019
c8d67b9
Defined access modifier for class constants
arueckauer Mar 14, 2019
36a09d8
Removed unnecessary parentheses
arueckauer Mar 14, 2019
58aa292
Removed senseless return statement
arueckauer Mar 14, 2019
d64052e
Makes usage of compact()
arueckauer Mar 14, 2019
56e4064
Removed redundanct variables
arueckauer Mar 14, 2019
f976f59
Use ::class instead
arueckauer Mar 14, 2019
32c592f
Use static::class instead
arueckauer Mar 14, 2019
ac63430
Declared return types
arueckauer Mar 14, 2019
4890d50
Initialize string property as string
arueckauer Mar 14, 2019
860da62
Updated possible types for
arueckauer Mar 14, 2019
f9b6214
Write single-line comments with @var as one-liners
arueckauer Mar 14, 2019
5e5af61
Do not align @param tags
arueckauer Mar 14, 2019
6ed30ef
Write single-line comments with @var as one-liners, removed null init…
arueckauer Mar 14, 2019
77e045e
Removed comment
arueckauer Mar 14, 2019
d0b743f
Removed comment which does not add valuable information, import Array…
arueckauer Mar 14, 2019
1c37347
Added information on where type declarations are blocked
arueckauer Mar 14, 2019
b5a668c
Removed comments which do not add valuable information, updated type …
arueckauer Mar 14, 2019
42b3f89
Added/updated argument and return type declarations, removed unnecess…
arueckauer Mar 14, 2019
4e8996b
Removed unnecessary comments
arueckauer Mar 14, 2019
e7c1ca3
Nullable and optional arguments, which are marked as = null, must hav…
arueckauer Mar 14, 2019
f6b2c1c
Removed null initializations, removed unnecessary comments
arueckauer Mar 14, 2019
7cc7a81
Removed null initializations, removed unnecessary comments
arueckauer Mar 14, 2019
67d4518
Declared argument types, removed unnecessary comments, updated return…
arueckauer Mar 14, 2019
c476b86
Removed unnecessary comments, declared argument types
arueckauer Mar 14, 2019
8c29ecd
Removed empty line
arueckauer Mar 14, 2019
3b1c803
Comment tags @param, @throws and @return should not be aligned or con…
arueckauer Mar 14, 2019
e45af7c
Removed null initializations
arueckauer Mar 14, 2019
d4b0340
Apply strict comparison
arueckauer Mar 14, 2019
8dd0cc1
Use instanceof operator
arueckauer Mar 14, 2019
e4f8dff
Added single space after NOT operator, break line before 120 characters
arueckauer Mar 14, 2019
d21616f
Updated argument type hint
arueckauer Mar 14, 2019
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
4 changes: 4 additions & 0 deletions 3.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ Changed `setDriver(DriverInterface $driver)` for all the following platforms:
- Zend\Db\Adapter\Platform\Postgresql
- Zend\Db\Adapter\Platform\Sqlite
- Zend\Db\Adapter\Platform\SqlServer

- Zend\Db\TableGateway\Feature\EventFeature\TableGatewayEvent

We cannot use type hint because the usage of `Zend\EventManager\EventInterface`.
Loading