Skip to content

Commit

Permalink
Merge pull request #8 from zachleigh/analysis-X0wJ24
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
zachleigh authored Nov 3, 2016
2 parents 410e071 + 31d0653 commit 8fff34e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/BundleItems/ItemFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace LaravelLangBundler\BundleItems;

use Illuminate\Container\Container;
use LaravelLangBundler\BundleItems\BundleItem;

class ItemFactory
{
Expand Down
2 changes: 0 additions & 2 deletions src/BundleItems/ModStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace LaravelLangBundler\BundleItems;

use LaravelLangBundler\BundleItems\ItemWrapper;

class ModStub extends ItemWrapper
{
/*
Expand Down
6 changes: 3 additions & 3 deletions src/Commands/MakeBundleMod.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function handle()
{
$filesystem = new Filesystem();

$pathArray = ['LangBundler', 'Mods', ];
$pathArray = ['LangBundler', 'Mods'];

$path = app_path().'/';

Expand All @@ -56,8 +56,8 @@ public function handle()
/**
* Get stub and fill.
*
* @param string $name
* @param Filestystem $filesystem
* @param string $name
* @param Filestystem $filesystem
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/stubs/bin2hex.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

return [
bundle_item('user.welcome_user', 'key_bin2hex')
bundle_item('user.welcome_user', 'key_bin2hex'),
];
4 changes: 2 additions & 2 deletions tests/stubs/en/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
'december' => 'Dec',
],
'inbox_status' => 'You have a new message.|You have new messages',
'lowercase' => 'lowercase string',
'uppercase' => 'UPPERSACE STRING'
'lowercase' => 'lowercase string',
'uppercase' => 'UPPERSACE STRING',
];

0 comments on commit 8fff34e

Please sign in to comment.