generated from yii2-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
455acdf
commit a90a05e
Showing
26 changed files
with
611 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yii\Blog\UseCase\Category; | ||
|
||
use yii\base\Event; | ||
|
||
final class CategoryEvent extends Event | ||
{ | ||
public const AFTER_DELETE = 'afterDelete'; | ||
public const AFTER_REGISTER = 'afterRegister'; | ||
public const AFTER_STATUS_ACTIVE = 'afterStatusActive'; | ||
public const AFTER_STATUS_DISABLE = 'afterStatusDisable'; | ||
public const AFTER_UPDATE = 'afterUpdate'; | ||
public const BEFORE_DELETE = 'beforeDelete'; | ||
public const BEFORE_REGISTER = 'beforeRegister'; | ||
public const BEFORE_STATUS_ACTIVE = 'beforeStatusActive'; | ||
public const BEFORE_STATUS_DISABLE = 'beforeStatusDisable'; | ||
public const BEFORE_UPDATE = 'beforeUpdate'; | ||
public const DELETE_ERROR = 'deleteError'; | ||
public const DELETE_NODE_CATEGORY = 'deleteNodeCategory'; | ||
public const NOT_FOUND = 'notFound'; | ||
public const NOT_UPDATE = 'notUpdate'; | ||
|
||
public function __construct(public readonly string|int|null $id = null) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.