Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-marcel committed Feb 8, 2016
2 parents dc8ea58 + 531d556 commit 9402f3b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Command/DoctrineDecryptDatabaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
//Set counter and loop through entity manager meta data
$propertyCount = 0;
foreach($metaDataArray as $metaData) {

if ($metaData->isMappedSuperclass) {
continue;
}
//Create reflectionClass for each entity
$reflectionClass = New \ReflectionClass($metaData->name);
$propertyArray = $reflectionClass->getProperties();
Expand All @@ -93,6 +95,9 @@ protected function execute(InputInterface $input, OutputInterface $output)

//Loop through entity manager meta data
foreach($metaDataArray as $metaData) {
if ($metaData->isMappedSuperclass) {
continue;
}

//Create reflectionClass for each meta data object
$reflectionClass = New \ReflectionClass($metaData->name);
Expand Down
6 changes: 6 additions & 0 deletions Command/DoctrineEncryptDatabaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
//Set counter and loop through entity manager meta data
$propertyCount = 0;
foreach($metaDataArray as $metaData) {
if ($metaData->isMappedSuperclass) {
continue;
}

//Create reflectionClass for each entity
$reflectionClass = New \ReflectionClass($metaData->name);
Expand All @@ -91,6 +94,9 @@ protected function execute(InputInterface $input, OutputInterface $output)

//Loop through entity manager meta data
foreach($metaDataArray as $metaData) {
if ($metaData->isMappedSuperclass) {
continue;
}

//Create reflectionClass for each meta data object
$reflectionClass = New \ReflectionClass($metaData->name);
Expand Down
3 changes: 3 additions & 0 deletions Command/DoctrineEncryptStatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ protected function execute(InputInterface $input, OutputInterface $output)

$totalCount = 0;
foreach($metaDataArray as $metaData) {
if ($metaData->isMappedSuperclass) {
continue;
}

$reflectionClass = New \ReflectionClass($metaData->name);
$propertyArray = $reflectionClass->getProperties();
Expand Down

0 comments on commit 9402f3b

Please sign in to comment.