Skip to content

Commit 3e8d073

Browse files
authored
Merge pull request #189 from mkopinsky/isSubclassOf_CS
Fix case for isSubclassOf method
2 parents ab1d8fa + edc749d commit 3e8d073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/plugins/sfDoctrinePlugin/lib/generator/sfDoctrineFormGenerator.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public function getPluginModels()
164164
{
165165
$parent = new ReflectionClass('Doctrine_Record');
166166
$reflection = new ReflectionClass($modelName);
167-
if ($reflection->isSubClassOf($parent))
167+
if ($reflection->isSubclassOf($parent))
168168
{
169169
$this->pluginModels[$modelName] = $pluginName;
170170

0 commit comments

Comments
 (0)