1
1
<?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
- */
8
2
9
3
namespace cornernote \softdelete ;
10
4
28
22
* ```
29
23
*
30
24
* @property ActiveQuery $owner
25
+ *
26
+ * @author cornernote <cornernote@gmail.com>
31
27
*/
32
28
class SoftDeleteQueryBehavior extends Behavior
33
29
{
@@ -37,24 +33,29 @@ class SoftDeleteQueryBehavior extends Behavior
37
33
public $ attribute = 'deleted_at ' ;
38
34
39
35
/**
40
- * @return ActiveQuery
36
+ * @return static
41
37
*/
42
38
public function deleted ()
43
39
{
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 ' );
48
41
}
49
42
50
43
/**
51
- * @return ActiveQuery
44
+ * @return static
52
45
*/
53
46
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 ()
54
55
{
55
56
/** @var ActiveRecord $modelClass */
56
57
$ modelClass = $ this ->owner ->modelClass ;
57
- $ tableName = $ modelClass ::tableName ();
58
- return $ this ->owner ->andWhere ($ tableName . '. ' . $ this ->attribute . ' IS NULL ' );
58
+ return $ modelClass ::tableName ();
59
59
}
60
+
60
61
}
0 commit comments