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
redis 127.0.0.1:6379> LPUSH t vox1 | |
(integer) 1 | |
redis 127.0.0.1:6379> LPUSH t vox2 | |
(integer) 2 | |
redis 127.0.0.1:6379> LPUSH t vox3 | |
(integer) 3 | |
redis 127.0.0.1:6379> LPUSH t vox4 | |
(integer) 4 | |
redis 127.0.0.1:6379> LPUSH t vox5 | |
(integer) 5 |
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 | |
/** | |
* | |
*/ | |
class Ssh2Test extends PHPUnit_Framework_TestCase | |
{ | |
/** | |
* @var resource | |
*/ |
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 | |
/** | |
* The ZendJobQueue is a PHP class that implements a connection to the Job Queue Daemon | |
* | |
*/ | |
class ZendJobQueue | |
{ | |
/** |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="Project Name" default="build" basedir="."> | |
<property environment="env"/> | |
<!--<property name="env.APPLICATION_ENV" value="development"/>--> | |
<property name="source" value="."/> | |
<target name="clean" description="Clean up and create artifact directories"> | |
<delete dir="${basedir}/build/api"/> | |
<delete dir="${basedir}/build/code-browser"/> | |
<delete dir="${basedir}/build/coverage"/> | |
<delete dir="${basedir}/build/logs"/> |
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 | |
/** | |
* @category Cautela | |
* @package Auth | |
* @subpackage OAuth2 | |
*/ | |
namespace Auth\OAuth2; | |
use OAuth2\Grant\GrantCodeInterface; | |
use OAuth2\RefreshTokensInterface; | |
use Zend_Db_Adapter_Abstract; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
xmlns="http://www.zend.com/server/deployment-descriptor/1.0" | |
targetNamespace="http://www.zend.com/server/deployment-descriptor/1.0" | |
elementFormDefault="qualified"> | |
<xs:element name="package"> | |
<xs:annotation> | |
<xs:documentation></xs:documentation> | |
</xs:annotation> | |
<xs:complexType> |
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
$ ./bin/swagger -p tests/fixtures/ -f | |
/usr/local/zend/apache2/htdocs/Swagger-PHP/resources.json created | |
/usr/local/zend/apache2/htdocs/Swagger-PHP//leadresponder.json created | |
$ |
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
{ | |
"name": "zircote/Org", | |
"type": "library", | |
"version": "0.2.0", | |
"time" : "2012-04-21", | |
"description": "New world API Order", | |
"keywords": ["api"], | |
"homepage": "http://github.com/zircote/Org/", | |
"repositories": [ | |
{ |
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 | |
/** | |
* | |
* @category Zend | |
* @package Zend_Application | |
* @subpackage Resource | |
*/ | |
/** | |
* @see Zend_Application_Resource_ResourceAbstract |
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 | |
/** | |
* Bootstrap the App in an annonymous function preserving global namespace. | |
*/ | |
call_user_func(function(){ | |
// Define path to application directory | |
defined('APPLICATION_PATH') | |
|| define('APPLICATION_PATH', | |
realpath(dirname(__FILE__) . '/../application')); |