Skip to content
This repository has been archived by the owner on Sep 18, 2019. It is now read-only.

Commit

Permalink
Merge pull request #39 from moltin/feature/suppliers
Browse files Browse the repository at this point in the history
Feature/suppliers
  • Loading branch information
outrunthewolf committed Jan 17, 2016
2 parents aa84b74 + 7bd3c9b commit b1caae8
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 12-01-2016
-Added Supplier facade so PHP-SDK users can create suppliers
29 changes: 29 additions & 0 deletions src/Facade/Supplier.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

/**
* This file is part of Moltin PHP-SDK, a PHP package which
* provides convinient and rapid access to the API.
*
* Copyright (c) 2013-2016 Moltin Ltd.
* http://github.com/moltin/php-sdk
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package moltin/php-sdk
* @author outrunthewolf <chris@moltin.com>
* @copyright 2016 Moltin Ltd.
* @version dev
* @link http://github.com/moltin/php-sdk
*
*/

namespace Moltin\SDK\Facade;

class Supplier
{
use \Moltin\SDK\FacadeTrait;

protected static $single = 'suppliers';
protected static $plural = 'suppliers';
}

0 comments on commit b1caae8

Please sign in to comment.