24 lines
491 B
PHP
24 lines
491 B
PHP
<?php
|
|
|
|
namespace Inertia;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class PropertyContext
|
|
{
|
|
/**
|
|
* Create a new property context instance. The property context provides
|
|
* information about the current property being resolved to objects
|
|
* implementing ProvidesInertiaProperty.
|
|
*
|
|
* @param array<string, mixed> $props
|
|
*/
|
|
public function __construct(
|
|
public string $key,
|
|
public array $props,
|
|
public Request $request
|
|
) {
|
|
//
|
|
}
|
|
}
|