This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Component\Example; | |
use Traversable; | |
use Exception as PhpException; | |
use Application\Component\Exception; | |
use Zend\Stdlib\ArrayUtils; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Zend\Db\Sql\Expression; | |
use Zend\Db\Sql\Predicate\Operator; | |
use Zend\Db\Sql\Select; | |
use Zend\Db\Sql\Where; | |
use Zend\Db\TableGateway\TableGateway; | |
$adapter = $this->getServiceLocator()->get('Zend\Db\Adapter\Adapter'); | |
$table = new TableGateway('users', $adapter); |
NewerOlder