1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Make more mockable classes non-@internal

This commit is contained in:
Matthew Brown 2018-12-01 19:45:38 -05:00
parent aee5639a4c
commit 9203b9d865
4 changed files with 0 additions and 12 deletions

View File

@ -3,9 +3,6 @@ namespace Psalm\Internal\PluginManager;
use RuntimeException;
/**
* @internal
*/
class ComposerLock
{
/** @var string */

View File

@ -5,9 +5,6 @@ use Psalm\Config;
use DomDocument;
use RuntimeException;
/**
* @internal
*/
class ConfigFile
{
const NS = 'https://getpsalm.org/schema/config';

View File

@ -1,9 +1,6 @@
<?php
namespace Psalm\Internal\PluginManager;
/**
* @internal
*/
class PluginList
{
/** @var ConfigFile */

View File

@ -1,9 +1,6 @@
<?php
namespace Psalm\Internal\PluginManager;
/**
* @internal
*/
class PluginListFactory
{
public function __invoke(string $current_dir, string $config_file_path = null): PluginList