Skip to content

Commit efa5f6b

Browse files
authoredFeb 21, 2017
Update SoftDeleteQueryBehavior.php
1 parent 221adfe commit efa5f6b

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed
 

‎src/SoftDeleteQueryBehavior.php

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
<?php
2-
/**
3-
* @author Brett O'Donnell <cornernote@gmail.com>
4-
* @copyright 2015 Mr PHP
5-
* @link https://github.com/cornernote/yii2-softdelete
6-
* @license BSD-3-Clause https://raw.github.com/cornernote/yii2-softdelete/master/LICENSE.md
7-
*/
82

93
namespace cornernote\softdelete;
104

@@ -28,6 +22,8 @@
2822
* ```
2923
*
3024
* @property ActiveQuery $owner
25+
*
26+
* @author cornernote <cornernote@gmail.com>
3127
*/
3228
class SoftDeleteQueryBehavior extends Behavior
3329
{
@@ -37,24 +33,29 @@ class SoftDeleteQueryBehavior extends Behavior
3733
public $attribute = 'deleted_at';
3834

3935
/**
40-
* @return ActiveQuery
36+
* @return static
4137
*/
4238
public function deleted()
4339
{
44-
/** @var ActiveRecord $modelClass */
45-
$modelClass = $this->owner->modelClass;
46-
$tableName = $modelClass::tableName();
47-
return $this->owner->andWhere($tableName . '.' . $this->attribute . ' IS NOT NULL');
40+
return $this->owner->andWhere($this->tableName() . '.' . $this->attribute . ' IS NOT NULL');
4841
}
4942

5043
/**
51-
* @return ActiveQuery
44+
* @return static
5245
*/
5346
public function notDeleted()
47+
{
48+
return $this->owner->andWhere($this->tableName() . '.' . $this->attribute . ' IS NULL');
49+
}
50+
51+
/**
52+
* @return string
53+
*/
54+
protected function tableName()
5455
{
5556
/** @var ActiveRecord $modelClass */
5657
$modelClass = $this->owner->modelClass;
57-
$tableName = $modelClass::tableName();
58-
return $this->owner->andWhere($tableName . '.' . $this->attribute . ' IS NULL');
58+
return $modelClass::tableName();
5959
}
60+
6061
}

0 commit comments

Comments
 (0)
Please sign in to comment.