14 lines
231 B
PHP
Executable File
14 lines
231 B
PHP
Executable File
<?php
|
|
|
|
namespace Knuckles\Camel\Output;
|
|
|
|
class Parameter extends \Knuckles\Camel\Extraction\Parameter
|
|
{
|
|
public array $__fields = [];
|
|
|
|
public function toArray(): array
|
|
{
|
|
return $this->except('__fields');
|
|
}
|
|
}
|