Skip to content

Commit

Permalink
III-1142 Coding standards fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
HnLn committed Jun 29, 2016
1 parent dd6e3ab commit b5d5ab7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/CultureFeed/Cdb/Item/ActorFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static function fromEvent(\CultureFeed_Cdb_Item_Event $event)

$actorProperties = $actorReflection->getProperties();
$actorPropertyNames = array_map(
function(ReflectionProperty $property) {
function (ReflectionProperty $property) {
return $property->getName();
},
$actorProperties
Expand Down Expand Up @@ -96,7 +96,7 @@ function(ReflectionProperty $property) {
default:
if (in_array($property->getName(), $actorPropertyNames)) {
$actorProperty = $actorReflection->getProperty($property->getName());
$actorProperty->setAccessible(TRUE);
$actorProperty->setAccessible(true);
$actorProperty->setValue($actor, $value);
}
break;
Expand Down

0 comments on commit b5d5ab7

Please sign in to comment.