1.0.0 Alpha Release #59
6 changed files with 2 additions and 51 deletions
|
@ -1,12 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace ncc\Abstracts;
|
|
||||||
|
|
||||||
abstract class AuthenticationSource
|
|
||||||
{
|
|
||||||
const None = 'NONE';
|
|
||||||
|
|
||||||
const ServerProvided = 'SERVER_PROVIDED';
|
|
||||||
|
|
||||||
const UserProvided = 'USER_PROVIDED';
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace ncc\Abstracts;
|
|
||||||
|
|
||||||
abstract class BuiltinRemoteSourceType
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The remote source indicates the package is to be
|
|
||||||
* fetched using the composer utility.
|
|
||||||
*/
|
|
||||||
const Composer = 'composer';
|
|
||||||
|
|
||||||
|
|
||||||
const All = [
|
|
||||||
self::Composer
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace ncc\Abstracts;
|
|
||||||
|
|
||||||
abstract class CompilerOptions
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
|
@ -12,7 +12,7 @@
|
||||||
/**
|
/**
|
||||||
* This denotes a project rather than a library. For example
|
* This denotes a project rather than a library. For example
|
||||||
* application shells like the Symfony standard edition, CMSs
|
* application shells like the Symfony standard edition, CMSs
|
||||||
* like the SilverStripe instlaler or full-fledged applications
|
* like the SilverStripe installer or full-fledged applications
|
||||||
* distributed as packages. This can for example be used by IDEs
|
* distributed as packages. This can for example be used by IDEs
|
||||||
* to provide listings of projects to initialize when creating
|
* to provide listings of projects to initialize when creating
|
||||||
* a new workspace.
|
* a new workspace.
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace ncc\Abstracts;
|
|
||||||
|
|
||||||
abstract class StringPaddingMethod
|
|
||||||
{
|
|
||||||
const LEFT = 'LEFT';
|
|
||||||
|
|
||||||
const RIGHT = 'RIGHT';
|
|
||||||
|
|
||||||
const BOTH = 'BOTH';
|
|
||||||
}
|
|
|
@ -14,6 +14,6 @@
|
||||||
*/
|
*/
|
||||||
public function __construct(string $message = "", ?Throwable $previous = null)
|
public function __construct(string $message = "", ?Throwable $previous = null)
|
||||||
{
|
{
|
||||||
parent::__construct($message, ExceptionCodes::InvalidVersionNumberException, $previous);
|
parent::__construct($message, ExceptionCodes::InvalidProjectNameException, $previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue