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')); |
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 | |
| /** | |
| * @license http://www.apache.org/licenses/LICENSE-2.0 | |
| * Copyright [2012] [Robert Allen] | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 |
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
| Index: amqp_queue.c | |
| =================================================================== | |
| --- amqp_queue.c (revision 325290) | |
| +++ amqp_queue.c (working copy) | |
| @@ -204,6 +204,7 @@ | |
| AMQP_SET_BOOL_PROPERTY(envelope->is_redelivery, delivery->redelivered); | |
| } else if (frame.payload.method.id == AMQP_BASIC_GET_EMPTY_METHOD) { | |
| /* We did a get and there were no messages */ | |
| + zval_dtor(envelopeZval); | |
| return AMQP_READ_NO_MESSAGES; |
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 | |
| /** | |
| * | |
| */ | |
| /** | |
| * Passing in this constant as a flag will forcefully disable all other flags. | |
| * Use this if you want to temporarily disable the amqp.auto_ack ini setting. | |
| * @var integer | |
| */ | |
| define('AMQP_NOPARAM'); |