You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
412 B
18 lines
412 B
4 years ago
|
<?php
|
||
|
|
||
|
use TightenCo\Jigsaw\Jigsaw;
|
||
|
|
||
|
/** @var $container \Illuminate\Container\Container */
|
||
|
/** @var $events \TightenCo\Jigsaw\Events\EventBus */
|
||
|
|
||
|
/**
|
||
|
* You can run custom code at different stages of the build process by
|
||
|
* listening to the 'beforeBuild', 'afterCollections', and 'afterBuild' events.
|
||
|
*
|
||
|
* For example:
|
||
|
*
|
||
|
* $events->beforeBuild(function (Jigsaw $jigsaw) {
|
||
|
* // Your code here
|
||
|
* });
|
||
|
*/
|