2017 © Pedro Peláez
 

library zf2-traits

Package that provides standard ZF implementations as traits

image

protec/zf2-traits

Package that provides standard ZF implementations as traits

  • Monday, February 4, 2013
  • by ColdFFF
  • Repository
  • 7 Watchers
  • 4 Stars
  • 78 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ZF2 Traits

Build Status, (*1)

Zend Framework 2 is awesome. PHP 5.4 is also awesome. Combine both, using new PHP 5.4 features to make developing with Zend Framework 2 more fun!, (*2)

Installation

Add "protec/zf2-traits": "dev-master" to your composer.json file and run php composer.phar update., (*3)

Awareness Traits

Zend Framework 2 has several *AwareTraits, used to automatically inject * into your classes when loaded via the service locator. These traits decrease code duplication by providing a standard implementation for these interfaces. Usage is pretty simple too. Just take the full name of the interface (including namespace), replace the 'Interface' part with 'Trait', and the '\Zend\' part with '\Protec\ZF2Trait\', and use this trait within your class:, (*4)


class MyClass implements \Zend\ServiceManager\ServiceLocatorAwareInterface { use \Protec\ZF2Trait\ServiceManager\ServiceLocatorAwareTrait; }

Please Note - ZF2 > 2.0.7

As of ZF2 2.0.7 - these are now available as part of Zend Framework itself - you should be able to swap out "\Protec\ZF2Trait" for "\Zend", (*5)

The Versions

04/02 2013

dev-master

9999999-dev http://www.github.com/protecinnovations/zf2-traits

Package that provides standard ZF implementations as traits

  Sources   Download

BSD-2-Clause

The Requires

 

trait zf2 module aware