PHP Class Owl\Repositories\Fluent\StockRepository

Inheritance: extends AbstractFluent, implements Owl\Repositories\StockRepositoryInterface
Show file Open project: owl/owl

Protected Properties

Property Type Description
$table

Public Methods

Method Description
destroy ( $user_id, $item_id ) : boolean Delete a "Stock data".
firstOrCreate ( $user_id, $item_id ) : stdClass get "Stock data" or Store a "Stock data".
getByItemId ( $item_id ) : stdClass Get "Stock data".
getByUserIdAndItemId ( $user_id, $item_id ) : stdClass Get "Stock data".
getRankingStockList ( $limit, $day_period = null ) : array Get ranking data.
getRankingWithCache ( $limit ) : array Get ranking data from cache.
getRecentRankingWithCache ( $limit, $dayPeriod ) : array Get recent ranking data from cache.
getStockById ( $id ) : stdClass Get a stock by id.
getStockList ( $user_id ) : array Get stock lists.
getTableName ( ) : string Get a table name.

Method Details

destroy() public method

Delete a "Stock data".
public destroy ( $user_id, $item_id ) : boolean
$user_id int user_id
$item_id int item_id
return boolean

firstOrCreate() public method

get "Stock data" or Store a "Stock data".
public firstOrCreate ( $user_id, $item_id ) : stdClass
$user_id int user_id
$item_id int item_id
return stdClass

getByItemId() public method

Get "Stock data".
public getByItemId ( $item_id ) : stdClass
$item_id int item_id
return stdClass

getByUserIdAndItemId() public method

Get "Stock data".
public getByUserIdAndItemId ( $user_id, $item_id ) : stdClass
$user_id int user_id
$item_id int item_id
return stdClass

getRankingStockList() public method

Get ranking data.
public getRankingStockList ( $limit, $day_period = null ) : array
$limit int limit date
$day_period int day period
return array

getRankingWithCache() public method

Get ranking data from cache.
public getRankingWithCache ( $limit ) : array
$limit int limit date
return array

getRecentRankingWithCache() public method

Get recent ranking data from cache.
public getRecentRankingWithCache ( $limit, $dayPeriod ) : array
$limit int limit date
$dayPeriod int day period
return array

getStockById() public method

Get a stock by id.
public getStockById ( $id ) : stdClass
$id int
return stdClass

getStockList() public method

Get stock lists.
public getStockList ( $user_id ) : array
$user_id int user_id
return array

getTableName() public method

Get a table name.
public getTableName ( ) : string
return string

Property Details

$table protected property

protected $table