Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jedenweb/doctrinevisible
Visibility trait for Doctrine entities
https://github.com/jedenweb/doctrinevisible
Last synced: about 1 month ago
JSON representation
Visibility trait for Doctrine entities
- Host: GitHub
- URL: https://github.com/jedenweb/doctrinevisible
- Owner: JedenWeb
- Created: 2015-08-10T12:31:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-10T12:57:20.000Z (over 9 years ago)
- Last Synced: 2024-12-09T11:09:49.139Z (about 1 month ago)
- Language: PHP
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Doctrine visible
Visibility trait for Doctrine entities
## Instalation
The best way to install jedenweb/doctrine-visible is using [Composer](http://getcomposer.org/):
```
$ composer require jedenweb/doctrine-visible:^1.0
```## Usage
### In Doctrine entity
```php
use JedenWeb\Doctrine\Visible\Visible;
/**
* @ORM\Entity
*/
class Entity
{
use Visible;
}```