Skip to content

JedenWeb/DoctrineVisible

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Doctrine visible

Visibility trait for Doctrine entities

Instalation

The best way to install jedenweb/doctrine-visible is using Composer:

$ composer require jedenweb/doctrine-visible:^1.0

Usage

In Doctrine entity

use JedenWeb\Doctrine\Visible\Visible;

/**
 * @ORM\Entity
 */
class Entity
{
	
	use Visible;
	
}