mirror of
https://github.com/sitelease/sugar-cube-client.git
synced 2025-11-03 05:22:29 +01:00
Corrected namespaces + Chnaged tab size to 4
+ Went through all the Model classes and updated their namespaces to match their parent folder name + Changed tab sizes to 4 spaces instead of 2 (in all php files)
This commit is contained in:
@ -1,24 +1,24 @@
|
||||
<?php declare(strict_types=1);
|
||||
namespace Gitea\Models;
|
||||
namespace Gitea\Model;
|
||||
|
||||
use Enum\{EnumTrait};
|
||||
|
||||
/** Defines the state of a Gitea status. */
|
||||
final class StatusState {
|
||||
use EnumTrait;
|
||||
use EnumTrait;
|
||||
|
||||
/** @var string The status is an error. */
|
||||
const error = 'error';
|
||||
/** @var string The status is an error. */
|
||||
const error = 'error';
|
||||
|
||||
/** @var string The status is a failure. */
|
||||
const failure = 'failure';
|
||||
/** @var string The status is a failure. */
|
||||
const failure = 'failure';
|
||||
|
||||
/** @var string The status is pending. */
|
||||
const pending = 'pending';
|
||||
/** @var string The status is pending. */
|
||||
const pending = 'pending';
|
||||
|
||||
/** @var string The status is a success. */
|
||||
const success = 'success';
|
||||
/** @var string The status is a success. */
|
||||
const success = 'success';
|
||||
|
||||
/** @var string The status is a warning. */
|
||||
const warning = 'warning';
|
||||
/** @var string The status is a warning. */
|
||||
const warning = 'warning';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user