This commit is contained in:
Kilian Hofmann
2021-06-01 19:55:55 +02:00
parent 052cbe3038
commit d8c489c714
328 changed files with 36645 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace Nuwave\Lighthouse\Events;
use Carbon\Carbon;
/**
* Fires right before resolving an individual query.
*
* Might happen multiple times in a single request if
* query batching is used.
*/
class StartExecution
{
/**
* The point in time when the query execution started.
*
* @var \Carbon\Carbon
*/
public $moment;
/**
* StartRequest constructor.
*
* @return void
*/
public function __construct()
{
$this->moment = Carbon::now();
}
}