Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
NoChangesConfigurator.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
10 use Composer\IO\IOInterface;
11 
13 {
17  private $io;
18 
19  public function __construct(IOInterface $io)
20  {
21  $this->io = $io;
22  }
23 
24  public function configure(string $moduleName): void
25  {
26  $this->io->writeError(sprintf(
27  ' ...No special rule applied for %s module',
28  $moduleName
29  ), true);
30  }
31 }