Repository: We do not overwrite properties, we're initializing them

refs #8826
This commit is contained in:
Johannes Meyer 2015-05-07 08:03:07 +02:00
parent 4d83b2f93d
commit ba4330de43

View File

@ -45,7 +45,7 @@ abstract class Repository implements Selectable
/** /**
* The query columns being provided * The query columns being provided
* *
* This must be overwritten by concrete repository implementations, in the following format * This must be initialized by concrete repository implementations, in the following format
* <pre><code> * <pre><code>
* array( * array(
* 'baseTable' => array( * 'baseTable' => array(
@ -70,7 +70,7 @@ abstract class Repository implements Selectable
/** /**
* The default sort rules to be applied on a query * The default sort rules to be applied on a query
* *
* This may be overwritten by concrete repository implementations, in the following format * This may be initialized by concrete repository implementations, in the following format
* <pre><code> * <pre><code>
* array( * array(
* 'alias_or_column_name' => array( * 'alias_or_column_name' => array(