valkyrjaio/application

View on GitHub
app/Models/SimpleModel.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace App\Models;

/**
 * Model SimpleModel.
 */
class SimpleModel
{
    /**
     * @var string
     */
    public string $property = 'hello';

    /**
     * @var string|null
     */
    public string|null $propertyNullable = null;
}