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 IntercaseDefault\MyClass; | |
class Curl{ | |
private $timeout = 15; | |
private $connectionTimeout = 10; | |
public function __construct () { |
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 | |
/** | |
* | |
* @SWG\Swagger( | |
* @SWG\Info( | |
* title="APIs Magali-PDV", | |
* version="Beta", | |
* @SWG\Contact( | |
* email="[email protected]" | |
* ) |
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 App\Model; | |
use App\Model\Views\AcomodacaoDetalhes; | |
use App\Model\Views\Comodidades; | |
use Illuminate\Database\Eloquent\Model; | |
class Acomodacao extends Model | |
{ |
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 MagaliApi\MyClass\Requests\GatewayCommerce; | |
use MagaliApi\MyClass\Contracts\GatewayCommerce; | |
class Category extends GatewayCommerce { | |
CONST TABLE = 'category'; | |
CONST REL_CAT_PRODUCT_CAT = 'category_product_by_category_id'; |