invoiceninja/app/Ninja/Intents/ProductIntent.php

14 lines
262 B
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Intents;
2016-08-10 15:57:34 +03:00
class ProductIntent extends BaseIntent
{
public function __construct($state, $data)
{
$this->productRepo = app('App\Ninja\Repositories\ProductRepository');
parent::__construct($state, $data);
}
}