5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Uncaught Error: Call to undefined method PhpCsFixer\Config::create()

Posted at

PhpCsFixer で以下のようなエラーが出るようになった

PHP Fatal error:  Uncaught Error: Call to undefined method PhpCsFixer\Config::create()

php-cs-fixerv3.0.02021-05-03 21:51 UTC にリリースされました。
その際、破壊的な変更として、

method create of class Config has been removed, use the constructor

が行われた様子。詳しくは、以下参照のこと。
https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/3.0/UPGRADE-v3.md

結果として、前述のエラーが出るようになりました。

PHP Fatal error: Uncaught Error: Call to undefined method PhpCsFixer\Config::create()

とりあえずの対策

v3.0.0 では他にも大きな変更が入っていそうなので、いったん、v2 にダウングレードします。

// global
$ composer global require friendsofphp/php-cs-fixer:v2.x --prefer-dist

// local
$ composer require --dev friendsofphp/php-cs-fixer:v2.x --prefer-dist

アップグレードするには

以下のように、create関数をnewに置き換えれば大丈夫そうではあります。
(未確認)

// return PhpCsFixer\Config::create()
return (new PhpCsFixer\Config())
    ->setRules(...)
    ;

おわりに

composer.lockしている環境では特に問題ないと思いますが、CI環境などでglobalにインストールしている場合など、composer.lockしていない環境では、v3リリース以降突然エラーになったかと思います。

誰かのお役に立てますように 🙏
ではでは。

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?