Some other clean up.

This commit is contained in:
James Cole
2016-01-29 07:08:17 +01:00
parent dc7f5a562b
commit c8bc9a096a
3 changed files with 4 additions and 0 deletions

View File

@@ -72,6 +72,8 @@ class AttachmentController extends Controller
/** /**
* @param Attachment $attachment * @param Attachment $attachment
* @param AttachmentHelperInterface $helper * @param AttachmentHelperInterface $helper
*
* @return string
*/ */
public function download(Attachment $attachment, AttachmentHelperInterface $helper) public function download(Attachment $attachment, AttachmentHelperInterface $helper)
{ {

View File

@@ -5,6 +5,7 @@ use Illuminate\Database\Eloquent\Model;
/** /**
* Class Component * Class Component
* *
* @property int $transaction_journal_id
* @package FireflyIII\Models * @package FireflyIII\Models
*/ */
class Component extends Model class Component extends Model

View File

@@ -46,6 +46,7 @@ class RouteServiceProvider extends ServiceProvider
{ {
$router->group( $router->group(
['namespace' => $this->namespace], function ($router) { ['namespace' => $this->namespace], function ($router) {
/** @noinspection PhpIncludeInspection */
require app_path('Http/routes.php'); require app_path('Http/routes.php');
} }
); );