diff options
author | Vyacheslav Pavlov <elliotweb@gmail.com> | 2016-07-22 17:17:18 +0300 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-07-26 06:40:54 +0200 |
commit | 71a22992fff802d88f138f4fe9cf8cbe9eabf724 (patch) | |
tree | bfb91ad60dad3169f891b2f5d3770d01860753a3 | |
parent | f2589f884f36fb6a5fbb678d9a4e1db1384efeff (diff) | |
download | symfony-security-71a22992fff802d88f138f4fe9cf8cbe9eabf724.zip symfony-security-71a22992fff802d88f138f4fe9cf8cbe9eabf724.tar.gz symfony-security-71a22992fff802d88f138f4fe9cf8cbe9eabf724.tar.bz2 |
Fixed bugs in names of classes and methods.
-rw-r--r-- | Acl/Resources/bin/generateSql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/Resources/bin/generateSql.php b/Acl/Resources/bin/generateSql.php index 4b1b38d..c425651 100644 --- a/Acl/Resources/bin/generateSql.php +++ b/Acl/Resources/bin/generateSql.php @@ -37,7 +37,7 @@ $reflection = new ReflectionClass('Doctrine\\DBAL\\Platforms\\AbstractPlatform') $finder = new Finder(); $finder->name('*Platform.php')->in(dirname($reflection->getFileName())); foreach ($finder as $file) { - require_once $file->getPathName(); + require_once $file->getPathname(); $className = 'Doctrine\\DBAL\\Platforms\\'.$file->getBasename('.php'); $reflection = new ReflectionClass($className); |