Skip to content

Commit a72bade

Browse files
committed
csfixed
1 parent 7a3380c commit a72bade

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+57
-54
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
.hidev/composer.json
33
.hidev/composer.lock
44
.hidev/config-local.yml
5+
.hidev/runtime
56
.hidev/vendor
7+
hidev-local.yml
68

79
# IDE & OS files
810
.*.swp
@@ -36,3 +38,6 @@ composer.phar
3638
php-cs-fixer.phar
3739
phpunit-skelgen.phar
3840
phpunit.phar
41+
42+
# Binaries
43+
ocular.phar

.php_cs

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ return PhpCsFixer\Config::create()
2626
],
2727
'concat_space' => ['spacing' => 'one'],
2828
'array_syntax' => ['syntax' => 'short'],
29+
'phpdoc_no_alias_tag' => ['replacements' => ['type' => 'var']],
2930
'blank_line_before_return' => false,
3031
'phpdoc_align' => false,
3132
'phpdoc_scalar' => false,

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ php:
44
- 7
55
- 7.1
66
- hhvm
7-
sudo: false
87
dist: trusty
98
matrix:
109
allow_failures:
@@ -18,10 +17,11 @@ before_install:
1817
- 'composer --version'
1918
- 'composer install --no-interaction'
2019
- './vendor/bin/hidev --version'
21-
- './vendor/bin/hidev travis/before_install'
20+
- './vendor/bin/hidev travis/before-install'
21+
sudo: false
2222
install:
2323
- './vendor/bin/hidev travis/install'
2424
script:
2525
- './vendor/bin/hidev travis/script'
2626
after_script:
27-
- './vendor/bin/hidev travis/after_script'
27+
- './vendor/bin/hidev travis/after-script'

.hidev/config.yml renamed to hidev.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package:
33
name: asset-packagist
44
title: Asset Packagist
55
keywords: composer, bower, npm, asset, packagist
6-
namespace: hiqdev\assetpackagist
76
description: |
87
![Composer](https://raw.githubusercontent.com/hiqdev/asset-packagist/master/docs/asset-packagist.png)
98

src/assets/AppAsset.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
@@ -19,7 +19,7 @@ class AppAsset extends AssetBundle
1919
'css/site.css',
2020
];
2121
public $js = [
22-
'https://use.fontawesome.com/483397b330.js'
22+
'https://use.fontawesome.com/483397b330.js',
2323
];
2424
public $depends = [
2525
'yii\web\YiiAsset',

src/commands/AbstractPackageCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/commands/CollectDependenciesCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/commands/PackageUpdateCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/components/Storage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/components/StorageInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/config/common.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/config/hidev.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/config/hisite.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
@@ -18,7 +18,7 @@
1818
],
1919
'assetManager' => [
2020
'bundles' => [
21-
\hiqdev\assetpackagist\assets\AppAsset::class
21+
\hiqdev\assetpackagist\assets\AppAsset::class,
2222
],
2323
],
2424
],

src/config/params.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/console/AssetPackageController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/console/BowerPackageController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/console/MaintenanceController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/console/QueueController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/controllers/PackageController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/controllers/SiteController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/exceptions/AssetFileStorageException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/exceptions/CorruptedPackageException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/exceptions/PackageNotExistsException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/exceptions/PermanentProblemExceptionInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/exceptions/UpdateRateLimitException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/helpers/Locker.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/log/StdoutTarget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/menus/FooterMenu.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/menus/MainMenu.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/migrations/m161129_140000_queue.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/migrations/m161130_163000_package.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/migrations/m170307_170300_queue_timeout.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/migrations/m170424_144100_package_avoiding.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/models/AssetPackage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/models/Release.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/registry/BowerRegistry.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/registry/NpmRegistry.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/registry/RegistryFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/registry/RegistryTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

src/repositories/PackageRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Asset Packagist.
44
*
5-
* @see https://github.com/hiqdev/asset-packagist
5+
* @link https://github.com/hiqdev/asset-packagist
66
* @package asset-packagist
77
* @license BSD-3-Clause
88
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)

0 commit comments

Comments
 (0)