Skip to content

Commit

Permalink
Merge branch 'hotfix/docs-sub-item-indentation' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Apr 16, 2020
2 parents 6638efd + d2d2606 commit 69f932b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions docs/book/table-gateway.md
Expand Up @@ -227,26 +227,26 @@ listed.
- `preInitialize` (no parameters)
- `postInitialize` (no parameters)
- `preSelect`, with the following parameters:
- `select`, with type `Laminas\Db\Sql\Select`
- `select`, with type `Laminas\Db\Sql\Select`
- `postSelect`, with the following parameters:
- `statement`, with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result`, with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `resultSet`, with type `Laminas\Db\ResultSet\ResultSetInterface`
- `statement`, with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result`, with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `resultSet`, with type `Laminas\Db\ResultSet\ResultSetInterface`
- `preInsert`, with the following parameters:
- `insert`, with type `Laminas\Db\Sql\Insert`
- `insert`, with type `Laminas\Db\Sql\Insert`
- `postInsert`, with the following parameters:
- `statement` with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result` with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `statement` with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result` with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `preUpdate`, with the following parameters:
- `update`, with type `Laminas\Db\Sql\Update`
- `update`, with type `Laminas\Db\Sql\Update`
- `postUpdate`, with the following parameters:
- `statement`, with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result`, with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `statement`, with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result`, with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `preDelete`, with the following parameters:
- `delete`, with type `Laminas\Db\Sql\Delete`
- `delete`, with type `Laminas\Db\Sql\Delete`
- `postDelete`, with the following parameters:
- `statement`, with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result`, with type `Laminas\Db\Adapter\Driver\ResultInterface`
- `statement`, with type `Laminas\Db\Adapter\Driver\StatementInterface`
- `result`, with type `Laminas\Db\Adapter\Driver\ResultInterface`

Listeners receive a `Laminas\Db\TableGateway\Feature\EventFeature\TableGatewayEvent`
instance as an argument. Within the listener, you can retrieve a parameter by
Expand Down

0 comments on commit 69f932b

Please sign in to comment.