13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
namespace Notes\Common;
|
|
|
|
class ReflectedMethodProperty extends ReflectedProperty
|
|
{
|
|
public int $position;
|
|
|
|
public bool $optional = false;
|
|
|
|
public bool $byReference = false;
|
|
}
|