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 Illuminate\Support\Collection; | |
abstract class AbstractEloquent implements BaseRepositoryInterface | |
{ | |
/** | |
* Model repository. | |
*/ | |
protected $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
'use strict' | |
const yargs = require('yargs') | |
const express = require('express') | |
const request = require('request') | |
const uuid = require('node-uuid') | |
const querystring = require('querystring') | |
const opener = require('opener') | |
let argv = require('yargs') |