Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
kayalion committed Nov 3, 2016
2 parents 57be127 + 58a0c0f commit 06f561d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# [1.1.1]
## Updated
- ScaffoldTable: set $orderStatements and $searchFields to protected
- ScaffoldTable: added missing use statement for OrmException

# [1.1.0]
## Updated
- use date time form component for datetime fields
Expand Down
5 changes: 3 additions & 2 deletions src/ride/web/orm/table/scaffold/ScaffoldTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace ride\web\orm\table\scaffold;

use ride\library\i18n\translator\Translator;
use ride\library\orm\exception\OrmException;
use ride\library\orm\definition\field\RelationField;
use ride\library\orm\definition\ModelTable as OrmModelTable;
use ride\library\orm\model\Model;
Expand All @@ -16,13 +17,13 @@ class ScaffoldTable extends ModelTable {
* Array with the field names to search in
* @var array
*/
private $searchFields;
protected $searchFields;

/**
* Array with the statements for the order functionality
* @var array
*/
private $orderStatements;
protected $orderStatements;

/**
* Constructs a new scaffold table
Expand Down

0 comments on commit 06f561d

Please sign in to comment.