2017 © Pedro Peláez
 

library entity-utils

Utilities for Doctrine Entities

image

geosocio/entity-utils

Utilities for Doctrine Entities

  • Monday, February 19, 2018
  • by davidbarratt
  • Repository
  • 1 Watchers
  • 1 Stars
  • 189 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 13 Versions
  • 31 % Grown

The README.md

Entity Utilities Build Status Coverage Status

Provides simply Doctrine Entity Utilities., (*1)

Parameter Bag

Easily construct an entity through the constructor., (*2)

use GeoSocio\EntityUtils\ParameterBag;

class User {

  __construct(array $data = []) {
    $params = new ParameterBag($data);
    $this->id = $params->getInt('id');
    $this->first = $params->getString('first');
    $this->last = $params->getString('last');
    $this->address = $params->getInstance('address', Address::class, new Address());
    $this->posts = $params->getCollection('posts', Post::class, new ArrayCollection());
  }

}

CreatedTrait

Include the trait in your entity to add a 'created' field that is added on persist., (*3)

use GeoSocio\EntityUtils\CreatedTrait;

class User {

  use CreatedTrait;

}

The Versions

19/02 2018

dev-develop

dev-develop

Utilities for Doctrine Entities

  Sources   Download

LGPL-3 LGPL-3.0-only

The Requires

 

The Development Requires

19/02 2018

1.2.2

1.2.2.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3.0-only

The Development Requires

13/09 2017

1.2.1

1.2.1.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Development Requires

20/08 2017

1.2.0

1.2.0.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Development Requires

20/08 2017

dev-number-float

dev-number-float

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Development Requires

20/08 2017

1.1.1

1.1.1.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Development Requires

19/08 2017

1.1.0

1.1.0.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Development Requires

25/06 2017

1.0.5

1.0.5.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Development Requires

24/06 2017

1.0.4

1.0.4.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Requires

 

The Development Requires

22/06 2017

1.0.3

1.0.3.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Requires

 

The Development Requires

22/06 2017

1.0.2

1.0.2.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Requires

 

The Development Requires

16/06 2017

1.0.1

1.0.1.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Requires

 

The Development Requires

16/06 2017

1.0.0

1.0.0.0

Utilities for Doctrine Entities

  Sources   Download

LGPL-3

The Requires

 

The Development Requires