WIP: Move features to own namespace
* Have all feature related classes in a single namespace. Relates: #72
This commit is contained in:
parent
2f6dc2304a
commit
cc0be4a5b4
6 changed files with 6 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
namespace Typo3Update;
|
||||
namespace Typo3Update\Feature;
|
||||
|
||||
/*
|
||||
* Copyright (C) 2017 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
namespace Typo3Update;
|
||||
namespace Typo3Update\Feature;
|
||||
|
||||
/*
|
||||
* Copyright (C) 2017 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||
|
@ -21,6 +21,7 @@ namespace Typo3Update;
|
|||
*/
|
||||
|
||||
use PHP_CodeSniffer_Sniff as PhpCsSniff;
|
||||
use Typo3Update\Options;
|
||||
|
||||
/**
|
||||
*
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
namespace Typo3Update;
|
||||
namespace Typo3Update\Feature;
|
||||
|
||||
/*
|
||||
* Copyright (C) 2017 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||
|
@ -21,7 +21,6 @@ namespace Typo3Update;
|
|||
*/
|
||||
|
||||
use PHP_CodeSniffer_File as PhpCsFile;
|
||||
use Typo3Update\Features;
|
||||
|
||||
/**
|
||||
* Provides "feature" support for sniff.
|
|
@ -23,8 +23,6 @@ namespace Typo3Update\Feature;
|
|||
use PHP_CodeSniffer as PhpCs;
|
||||
use PHP_CodeSniffer_File as PhpCsFile;
|
||||
use PHP_CodeSniffer_Sniff as PhpCsSniff;
|
||||
use Typo3Update\FeatureInterface;
|
||||
use Typo3Update\Feature\LegacyClassnameMapping;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
|
@ -22,7 +22,7 @@ namespace Typo3Update\Sniffs\Classname;
|
|||
|
||||
use PHP_CodeSniffer_File as PhpCsFile;
|
||||
use PHP_CodeSniffer_Sniff as PhpCsSniff;
|
||||
use Typo3Update\FeaturesSupport;
|
||||
use Typo3Update\Feature\FeaturesSupport;
|
||||
|
||||
/**
|
||||
* Provide common uses for all sniffs, regarding class name checks.
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
use PHP_CodeSniffer_File as PhpCsFile;
|
||||
use PHP_CodeSniffer_Sniff as PhpCsSniff;
|
||||
use Typo3Update\FeaturesSupport;
|
||||
use Typo3Update\Feature\FeaturesSupport;
|
||||
|
||||
/**
|
||||
* Handle PHP Doc comments.
|
||||
|
|
Loading…
Reference in a new issue