Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
f50128c5
Commit
f50128c5
authored
Oct 05, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hydrate hooks added
parent
f0e43a66
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
40 deletions
+61
-40
EventListener.php
lib/Doctrine/EventListener.php
+6
-1
Chain.php
lib/Doctrine/EventListener/Chain.php
+51
-38
Interface.php
lib/Doctrine/EventListener/Interface.php
+4
-1
No files found.
lib/Doctrine/EventListener.php
View file @
f50128c5
...
...
@@ -102,6 +102,11 @@ class Doctrine_EventListener implements Doctrine_EventListener_Interface
{
}
public
function
postError
(
Doctrine_Event
$event
)
{
}
public
function
preHydrate
(
Doctrine_Event
$event
)
{
}
public
function
postHydrate
(
Doctrine_Event
$event
)
{
}
public
function
preFetch
(
Doctrine_Event
$event
)
{
}
...
...
@@ -117,4 +122,4 @@ class Doctrine_EventListener implements Doctrine_EventListener_Interface
{
}
public
function
postStmtExecute
(
Doctrine_Event
$event
)
{
}
}
\ No newline at end of file
}
lib/Doctrine/EventListener/Chain.php
View file @
f50128c5
This diff is collapsed.
Click to expand it.
lib/Doctrine/EventListener/Interface.php
View file @
f50128c5
...
...
@@ -58,6 +58,9 @@ interface Doctrine_EventListener_Interface
public
function
preError
(
Doctrine_Event
$event
);
public
function
postError
(
Doctrine_Event
$event
);
public
function
preHydrate
(
Doctrine_Event
$event
);
public
function
postHydrate
(
Doctrine_Event
$event
);
public
function
preFetch
(
Doctrine_Event
$event
);
public
function
postFetch
(
Doctrine_Event
$event
);
...
...
@@ -66,4 +69,4 @@ interface Doctrine_EventListener_Interface
public
function
preStmtExecute
(
Doctrine_Event
$event
);
public
function
postStmtExecute
(
Doctrine_Event
$event
);
}
\ No newline at end of file
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment