primo upload

This commit is contained in:
claus75a
2024-03-16 20:37:32 +01:00
commit e43b9b4b28
3019 changed files with 406000 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
<?php
namespace Vanguard\Events\Permission;
class Created extends PermissionEvent {}
+5
View File
@@ -0,0 +1,5 @@
<?php
namespace Vanguard\Events\Permission;
class Deleted extends PermissionEvent {}
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace Vanguard\Events\Permission;
use Vanguard\Permission;
abstract class PermissionEvent
{
/**
* @var Permission
*/
protected $permission;
public function __construct(Permission $permission)
{
$this->permission = $permission;
}
/**
* @return Permission
*/
public function getPermission()
{
return $this->permission;
}
}
+5
View File
@@ -0,0 +1,5 @@
<?php
namespace Vanguard\Events\Permission;
class Updated extends PermissionEvent {}