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
9a550358
Commit
9a550358
authored
Jan 22, 2009
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Some cleanup for previous commit.
parent
22e94ac5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
17 deletions
+0
-17
ClassLoader.php
lib/Doctrine/Common/ClassLoader.php
+0
-17
No files found.
lib/Doctrine/Common/ClassLoader.php
View file @
9a550358
...
@@ -75,8 +75,6 @@ class ClassLoader
...
@@ -75,8 +75,6 @@ class ClassLoader
$class
.=
$this
->
_basePaths
[
$prefix
]
.
DIRECTORY_SEPARATOR
;
$class
.=
$this
->
_basePaths
[
$prefix
]
.
DIRECTORY_SEPARATOR
;
}
}
if
(
$className
[
0
]
==
'\\'
)
$className
=
substr
(
$className
,
1
);
$class
.=
str_replace
(
array
(
$this
->
_namespaceSeparator
,
'_'
),
DIRECTORY_SEPARATOR
,
$className
)
$class
.=
str_replace
(
array
(
$this
->
_namespaceSeparator
,
'_'
),
DIRECTORY_SEPARATOR
,
$className
)
.
$this
->
_fileExtension
;
.
$this
->
_fileExtension
;
...
@@ -87,21 +85,6 @@ class ClassLoader
...
@@ -87,21 +85,6 @@ class ClassLoader
@
fclose
(
$fh
);
@
fclose
(
$fh
);
}
}
if
(
$class
==
'ForumAvatar.php'
||
$class
==
'ForumUser.php'
)
{
echo
$class
.
PHP_EOL
;
try
{
throw
new
\Exception
();
}
catch
(
\Exception
$e
)
{
echo
$e
->
getTraceAsString
();
}
}
else
if
(
$class
==
'Doctrine/Common/Exceptions/DoctrineException.php'
)
{
try
{
throw
new
\Exception
();
}
catch
(
\Exception
$e
)
{
echo
$e
->
getTraceAsString
();
}
}
require
$class
;
require
$class
;
return
true
;
return
true
;
...
...
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