Skip to content

Commit 10f3388

Browse files
authored
Changed naming
1 parent 3484aac commit 10f3388

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/DoctrineORMModule/Options/Configuration.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,11 @@ class Configuration extends DBALConfiguration
203203
protected $secondLevelCache;
204204

205205
/**
206-
* Configuration for schema filter
206+
* Configuration option for the filter schema expression
207207
*
208208
* @var string|null
209209
*/
210-
protected $schemaFilter;
210+
protected $filterSchemaAssetsExpression;
211211

212212
/**
213213
* @param array $datetimeFunctions
@@ -684,20 +684,20 @@ public function getSecondLevelCache()
684684
}
685685

686686
/**
687-
* @param string $schemaFilter
687+
* @param string $filterSchemaAssetsExpression
688688
* @return void
689689
*/
690-
public function setSchemaFilter($schemaFilter)
690+
public function setFilterSchemaAssetsExpression($filterSchemaAssetsExpression)
691691
{
692-
$this->schemaFilter = $schemaFilter;
692+
$this->filterSchemaAssetsExpression = $filterSchemaAssetsExpression;
693693
}
694694

695695
/**
696696
* @return string|null
697697
*/
698-
public function getSchemaFilter()
698+
public function getFilterSchemaAssetsExpression()
699699
{
700-
return $this->schemaFilter;
700+
return $this->filterSchemaAssetsExpression;
701701
}
702702

703703
/**

0 commit comments

Comments
 (0)