Skip to content

style: update coding style by php-cs-fixer v3.42.0 #8367

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion system/Autoloader/Autoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* $loader->register();
* ```
*
* @see \CodeIgniter\Autoloader\AutoloaderTest
* @see AutoloaderTest
*/
class Autoloader
{
Expand Down
2 changes: 1 addition & 1 deletion system/Autoloader/FileLocator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Allows loading non-class files in a namespaced manner.
* Works with Helpers, Views, etc.
*
* @see \CodeIgniter\Autoloader\FileLocatorTest
* @see FileLocatorTest
*/
class FileLocator
{
Expand Down
2 changes: 1 addition & 1 deletion system/CLI/CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* an argument of "0".
* These have been flagged to ignore for code coverage purposes.
*
* @see \CodeIgniter\CLI\CLITest
* @see CLITest
*/
class CLI
{
Expand Down
2 changes: 1 addition & 1 deletion system/CLI/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Console
*
* @see \CodeIgniter\CLI\ConsoleTest
* @see ConsoleTest
*/
class Console
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/CacheFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* A factory for loading the desired
*
* @see \CodeIgniter\Cache\CacheFactoryTest
* @see CacheFactoryTest
*/
class CacheFactory
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/Handlers/BaseHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Base class for cache handling
*
* @see \CodeIgniter\Cache\Handlers\BaseHandlerTest
* @see BaseHandlerTest
*/
abstract class BaseHandler implements CacheInterface
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/Handlers/DummyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Dummy cache handler
*
* @see \CodeIgniter\Cache\Handlers\DummyHandlerTest
* @see DummyHandlerTest
*/
class DummyHandler extends BaseHandler
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/Handlers/FileHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* File system cache handler
*
* @see \CodeIgniter\Cache\Handlers\FileHandlerTest
* @see FileHandlerTest
*/
class FileHandler extends BaseHandler
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/Handlers/MemcachedHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Mamcached cache handler
*
* @see \CodeIgniter\Cache\Handlers\MemcachedHandlerTest
* @see MemcachedHandlerTest
*/
class MemcachedHandler extends BaseHandler
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/Handlers/PredisHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Predis cache handler
*
* @see \CodeIgniter\Cache\Handlers\PredisHandlerTest
* @see PredisHandlerTest
*/
class PredisHandler extends BaseHandler
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/Handlers/RedisHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Redis cache handler
*
* @see \CodeIgniter\Cache\Handlers\RedisHandlerTest
* @see RedisHandlerTest
*/
class RedisHandler extends BaseHandler
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cache/ResponseCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Web Page Caching
*
* @see \CodeIgniter\Cache\ResponseCacheTest
* @see ResponseCacheTest
*/
final class ResponseCache
{
Expand Down
2 changes: 1 addition & 1 deletion system/CodeIgniter.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* request, route it to a controller, and send back the response.
* Of course, there are variations to that flow, but this is the brains.
*
* @see \CodeIgniter\CodeIgniterTest
* @see CodeIgniterTest
*/
class CodeIgniter
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Database/MigrateStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Displays a list of all migrations and whether they've been run or not.
*
* @see \CodeIgniter\Commands\Database\MigrateStatusTest
* @see MigrateStatusTest
*/
class MigrateStatus extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Database/ShowTableInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Get table data if it exists in the database.
*
* @see \CodeIgniter\Commands\Database\ShowTableInfoTest
* @see ShowTableInfoTest
*/
class ShowTableInfo extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Utilities/Namespaces.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* full server path. Helps you to verify that you have
* the namespaces setup correctly.
*
* @see \CodeIgniter\Commands\Utilities\NamespacesTest
* @see NamespacesTest
*/
class Namespaces extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Utilities/Routes/AutoRouteCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Collects data for auto route listing.
*
* @see \CodeIgniter\Commands\Utilities\Routes\AutoRouteCollectorTest
* @see AutoRouteCollectorTest
*/
final class AutoRouteCollector
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Collects data for Auto Routing Improved.
*
* @see \CodeIgniter\Commands\Utilities\Routes\AutoRouterImproved\AutoRouteCollectorTest
* @see AutoRouteCollectorTest
*/
final class AutoRouteCollector
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Reads a controller and returns a list of auto route listing.
*
* @see \CodeIgniter\Commands\Utilities\Routes\AutoRouterImproved\ControllerMethodReaderTest
* @see ControllerMethodReaderTest
*/
final class ControllerMethodReader
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Utilities/Routes/ControllerFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Finds all controllers in a namespace for auto route listing.
*
* @see \CodeIgniter\Commands\Utilities\Routes\ControllerFinderTest
* @see ControllerFinderTest
*/
final class ControllerFinder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Reads a controller and returns a list of auto route listing.
*
* @see \CodeIgniter\Commands\Utilities\Routes\ControllerMethodReaderTest
* @see ControllerMethodReaderTest
*/
final class ControllerMethodReader
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Utilities/Routes/FilterCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Collects filters for a route.
*
* @see \CodeIgniter\Commands\Utilities\Routes\FilterCollectorTest
* @see FilterCollectorTest
*/
final class FilterCollector
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Utilities/Routes/FilterFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Finds filters.
*
* @see \CodeIgniter\Commands\Utilities\Routes\FilterFinderTest
* @see FilterFinderTest
*/
final class FilterFinder
{
Expand Down
2 changes: 1 addition & 1 deletion system/Commands/Utilities/Routes/SampleURIGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Generate a sample URI path from route key regex.
*
* @see \CodeIgniter\Commands\Utilities\Routes\SampleURIGeneratorTest
* @see SampleURIGeneratorTest
*/
final class SampleURIGenerator
{
Expand Down
2 changes: 1 addition & 1 deletion system/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ function force_https(
* that version is yet to be released. This function will therefore
* be just temporary, but would probably be kept for a few years.
*
* @see http://www.hardened-php.net/suhosin/
* @see http://www.hardened-php.net/suhosin/
*
* @param string $functionName Function to check for
*
Expand Down
2 changes: 1 addition & 1 deletion system/Config/BaseConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* These can be set within the .env file.
*
* @phpstan-consistent-constructor
* @see \CodeIgniter\Config\BaseConfigTest
* @see BaseConfigTest
*/
class BaseConfig
{
Expand Down
2 changes: 1 addition & 1 deletion system/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

/**
* @deprecated Use CodeIgniter\Config\Factories::config()
* @see \CodeIgniter\Config\ConfigTest
* @see ConfigTest
*/
class Config
{
Expand Down
2 changes: 1 addition & 1 deletion system/Config/DotEnv.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Environment-specific configuration
*
* @see \CodeIgniter\Config\DotEnvTest
* @see DotEnvTest
*/
class DotEnv
{
Expand Down
2 changes: 1 addition & 1 deletion system/Config/Factories.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @method static BaseConfig|null config(...$arguments)
* @method static Model|null models(string $alias, array $options = [], ?ConnectionInterface &$conn = null)
* @see \CodeIgniter\Config\FactoriesTest
* @see FactoriesTest
*/
class Factories
{
Expand Down
2 changes: 1 addition & 1 deletion system/Config/Services.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
*
* @see http://blog.ircmaxell.com/2015/11/simple-easy-risk-and-change.html
* @see http://www.infoq.com/presentations/Simple-Made-Easy
* @see \CodeIgniter\Config\ServicesTest
* @see ServicesTest
*/
class Services extends BaseService
{
Expand Down
2 changes: 1 addition & 1 deletion system/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Class Controller
*
* @see \CodeIgniter\ControllerTest
* @see ControllerTest
*/
class Controller
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cookie/Cookie.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* ```
*
* @template-implements ArrayAccess<string, bool|int|string>
* @see \CodeIgniter\Cookie\CookieTest
* @see CookieTest
*/
class Cookie implements ArrayAccess, CloneableCookieInterface
{
Expand Down
2 changes: 1 addition & 1 deletion system/Cookie/CookieStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* The CookieStore object represents an immutable collection of `Cookie` value objects.
*
* @implements IteratorAggregate<string, Cookie>
* @see \CodeIgniter\Cookie\CookieStoreTest
* @see CookieStoreTest
*/
class CookieStore implements Countable, IteratorAggregate
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/BaseConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* @template TResult
*
* @implements ConnectionInterface<TConnection, TResult>
* @see \CodeIgniter\Database\BaseConnectionTest
* @see BaseConnectionTest
*/
abstract class BaseConnection implements ConnectionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Class Config
*
* @see \CodeIgniter\Database\ConfigTest
* @see ConfigTest
*/
class Config extends BaseConfig
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/ModelFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @deprecated Use CodeIgniter\Config\Factories::models()
*
* @codeCoverageIgnore
* @see \CodeIgniter\Database\ModelFactoryTest
* @see ModelFactoryTest
*/
class ModelFactory
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/RawSql.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace CodeIgniter\Database;

/**
* @see \CodeIgniter\Database\RawSqlTest
* @see RawSqlTest
*/
class RawSql
{
Expand Down
2 changes: 1 addition & 1 deletion system/Debug/ExceptionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use Throwable;

/**
* @see \CodeIgniter\Debug\ExceptionHandlerTest
* @see ExceptionHandlerTest
*/
final class ExceptionHandler extends BaseExceptionHandler implements ExceptionHandlerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion system/Debug/Exceptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* Exceptions manager
*
* @see \CodeIgniter\Debug\ExceptionsTest
* @see ExceptionsTest
*/
class Exceptions
{
Expand Down
2 changes: 1 addition & 1 deletion system/Debug/Timer.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Provides a simple way to measure the amount of time
* that elapses between two points.
*
* @see \CodeIgniter\Debug\TimerTest
* @see TimerTest
*/
class Timer
{
Expand Down
2 changes: 1 addition & 1 deletion system/Debug/Toolbar/Collectors/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Collector for the Database tab of the Debug Toolbar.
*
* @see \CodeIgniter\Debug\Toolbar\Collectors\DatabaseTest
* @see DatabaseTest
*/
class Database extends BaseCollector
{
Expand Down
2 changes: 1 addition & 1 deletion system/Debug/Toolbar/Collectors/History.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* History collector
*
* @see \CodeIgniter\Debug\Toolbar\Collectors\HistoryTest
* @see HistoryTest
*/
class History extends BaseCollector
{
Expand Down
Loading