1
0
mirror of synced 2025-01-18 22:41:43 +03:00

14 lines
210 B
PHP

<?php
namespace Doctrine\Tests\Models\Company;
/**
* @DoctrineEntity
*/
class CompanyManager extends CompanyEmployee
{
/*
* @DoctrineColumn(type="string", length="255")
*/
public $title;
}