Skip to content

Commit

Permalink
Tagging release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jools committed Jan 22, 2017
1 parent 48fdbe2 commit 65013d5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/DatabaseModelInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Joomla Framework Database Model Interface
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
* @note As of 2.0 the `Joomla\Database\DatabaseInterface` will be typehinted.
*/
interface DatabaseModelInterface
Expand All @@ -23,7 +23,7 @@ interface DatabaseModelInterface
*
* @return DatabaseDriver The database driver.
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
public function getDb();
}
8 changes: 4 additions & 4 deletions src/DatabaseModelTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Trait representing a model holding a database reference
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
* @note As of 2.0 the `Joomla\Database\DatabaseInterface` will be typehinted.
*/
trait DatabaseModelTrait
Expand All @@ -22,7 +22,7 @@ trait DatabaseModelTrait
* The database driver.
*
* @var DatabaseDriver
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
protected $db;

Expand All @@ -31,7 +31,7 @@ trait DatabaseModelTrait
*
* @return DatabaseDriver The database driver.
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
* @throws \UnexpectedValueException
*/
public function getDb()
Expand All @@ -51,7 +51,7 @@ public function getDb()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
public function setDb(DatabaseDriver $db)
{
Expand Down
4 changes: 2 additions & 2 deletions src/StatefulModelInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Joomla Framework Stateful Model Interface
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
interface StatefulModelInterface
{
Expand All @@ -22,7 +22,7 @@ interface StatefulModelInterface
*
* @return Registry The state object.
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
public function getState();
}
8 changes: 4 additions & 4 deletions src/StatefulModelTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
/**
* Trait representing a model holding a state
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
trait StatefulModelTrait
{
/**
* The model state.
*
* @var Registry
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
protected $state;

Expand All @@ -30,7 +30,7 @@ trait StatefulModelTrait
*
* @return Registry The state object.
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
* @throws \UnexpectedValueException
*/
public function getState()
Expand All @@ -50,7 +50,7 @@ public function getState()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 1.3.0
*/
public function setState(Registry $state)
{
Expand Down

0 comments on commit 65013d5

Please sign in to comment.