* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://opensource.org/licenses/MIT * * // TODO: include in test coverage in 3.10 * @codeCoverageIgnore */ abstract class NodeProperty { abstract public static function factory($value = null): static|null; public function render(ModelWithContent $model) { return null; } }