Skip to content

Commit

Permalink
Merge pull request #3 from ssx/analysis-XZpaGa
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
ssx authored Sep 25, 2019
2 parents 6249b60 + d003ede commit f5a5324
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/SkrubCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?php

/*
* This file is part of ssx/skrub
*
* (c) Scott Robinson <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace SSX\Package\Skrub;

use RecursiveIteratorIterator;
Expand Down Expand Up @@ -135,7 +145,7 @@ private function getDirectorySize($dir)
*
* @return bool|string
*/
function bytesToHumanReadable($bytes, $decimals = 2)
public function bytesToHumanReadable($bytes, $decimals = 2)
{
$sz = 'BKMGTP';
$factor = floor((strlen($bytes) - 1) / 3);
Expand Down
10 changes: 10 additions & 0 deletions src/SkrubPlugin.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?php

/*
* This file is part of ssx/skrub
*
* (c) Scott Robinson <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace SSX\Package\Skrub;

use Composer\Composer;
Expand Down
10 changes: 10 additions & 0 deletions src/SkrubProvider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?php

/*
* This file is part of ssx/skrub
*
* (c) Scott Robinson <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace SSX\Package\Skrub;

use Composer\Plugin\Capability\CommandProvider;
Expand Down

0 comments on commit f5a5324

Please sign in to comment.