-
-
Notifications
You must be signed in to change notification settings - Fork 816
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
50f20e8
commit 44d94fe
Showing
10 changed files
with
165 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace InfyOm\Generator\Events; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
/** | ||
* Class GeneratorFileCreated. | ||
*/ | ||
class GeneratorFileCreated | ||
{ | ||
use SerializesModels; | ||
|
||
public $type; | ||
public $data; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @param string $type | ||
* @param array $data | ||
*/ | ||
public function __construct($type, $data) | ||
{ | ||
$this->type = $type; | ||
$this->data = $data; | ||
} | ||
} |
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,28 @@ | ||
<?php | ||
|
||
namespace InfyOm\Generator\Events; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
/** | ||
* Class GeneratorFileCreating. | ||
*/ | ||
class GeneratorFileCreating | ||
{ | ||
use SerializesModels; | ||
|
||
public $type; | ||
public $data; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @param string $type | ||
* @param array $data | ||
*/ | ||
public function __construct($type, $data) | ||
{ | ||
$this->type = $type; | ||
$this->data = $data; | ||
} | ||
} |
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,28 @@ | ||
<?php | ||
|
||
namespace InfyOm\Generator\Events; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
/** | ||
* Class GeneratorFileDeleted. | ||
*/ | ||
class GeneratorFileDeleted | ||
{ | ||
use SerializesModels; | ||
|
||
public $type; | ||
public $data; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @param string $type | ||
* @param array $data | ||
*/ | ||
public function __construct($type, $data) | ||
{ | ||
$this->type = $type; | ||
$this->data = $data; | ||
} | ||
} |
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,28 @@ | ||
<?php | ||
|
||
namespace InfyOm\Generator\Events; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
/** | ||
* Class GeneratorFileDeleting. | ||
*/ | ||
class GeneratorFileDeleting | ||
{ | ||
use SerializesModels; | ||
|
||
public $type; | ||
public $data; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @param string $type | ||
* @param array $data | ||
*/ | ||
public function __construct($type, $data) | ||
{ | ||
$this->type = $type; | ||
$this->data = $data; | ||
} | ||
} |
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