Skip to content

Commit

Permalink
Track GeneratedConfig in Git
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Sep 13, 2019
1 parent f05eb57 commit b9f4c4e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/GeneratedConfig.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php declare(strict_types = 1);

namespace PHPStan\ExtensionInstaller;

/**
* This is a stub class: it is in place only for scenarios where Composer
* is run with a `--no-scripts` flag, in which scenarios this stub class
* is not being replaced.
*
* If you are reading this docBlock inside your `vendor/` dir, then this means
* that phpstan/extension-installer didn't correctly install.
*
* @internal
*/
final class GeneratedConfig
{

public const EXTENSIONS = [];

public const NOT_INSTALLED = [];

private function __construct()
{
}

}

0 comments on commit b9f4c4e

Please sign in to comment.