Skip to content

Commit

Permalink
Revert "[#14213] - Fixed class references in test models"
Browse files Browse the repository at this point in the history
This reverts commit 053e808.
  • Loading branch information
niden committed Jul 4, 2019
1 parent 511cb36 commit 6f50a42
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/_data/fixtures/models/Dynamic/Personas.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Phalcon\Test\Models\Dynamic;

use Phalcon\Mvc\Model\AbstractModel;
use Phalcon\Mvc\Model as PhalconModel;

/**
* @property string $cedula
Expand All @@ -28,7 +28,7 @@
*
* @method static Personas findFirst($parameters = null)
*/
class Personas extends AbstractModel
class Personas extends PhalconModel
{
public function initialize()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/_data/fixtures/models/Dynamic/Personers.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Phalcon\Test\Models\Dynamic;

use Phalcon\Mvc\Model\AbstractModel;
use Phalcon\Mvc\Model as PhalconModel;
use Phalcon\Mvc\Model\Behavior\SoftDelete;

/**
Expand All @@ -29,7 +29,7 @@
*
* @method static Personers findFirst($parameters = null)
*/
class Personers extends AbstractModel
class Personers extends PhalconModel
{
public function initialize()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/_data/fixtures/models/Dynamic/Robots.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Phalcon\Test\Models\Dynamic;

use Phalcon\Mvc\Model\AbstractModel;
use Phalcon\Mvc\Model as PhalconModel;
use Phalcon\Test\Models\RobotsParts;

/**
Expand All @@ -26,7 +26,7 @@
* @method static Robots findFirst($parameters = null)
* @method static Robots[] find($parameters = null)
*/
class Robots extends AbstractModel
class Robots extends PhalconModel
{
public $year;

Expand Down

0 comments on commit 6f50a42

Please sign in to comment.