-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup: PHP 5.3 support end #1255
Cleanup: PHP 5.3 support end #1255
Conversation
Hello, thank you for creating this pull request. I have automatically opened an issue http://www.doctrine-project.org/jira/browse/DDC-3501 We use Jira to track the state of pull requests and the versions they got |
Finally! thx @Ocramius ! |
Sweet! |
@deeky666 this will force you to make Doctrine ORM 2.4 an LTS for people being stuck with PHP 5.3 support |
$identifier = $this->em->getUnitOfWork()->getEntityIdentifier($entity); | ||
$tableName = $this->quoteStrategy->getTableName($class, $this->platform); | ||
$idColumns = $this->quoteStrategy->getIdentifierColumnNames($class, $this->platform); | ||
$id = array_combine($idColumns, $identifier); | ||
$types = array_map(function ($identifier) use ($class, $em) { | ||
$types = array_map(function ($identifier) use ($class) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how about $class
, which is also an alias to $this->class
?
No description provided.