Added Nosial Copyright
This commit is contained in:
parent
c6955b45c1
commit
c38b508ec7
14 changed files with 54 additions and 3 deletions
|
@ -5,6 +5,10 @@
|
|||
use ncc\Exceptions\FileNotFoundException;
|
||||
use ncc\Exceptions\InvalidProjectConfigurationException;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
abstract class ExceptionCodes
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
namespace ncc\Abstracts;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
abstract class RegexPatterns
|
||||
{
|
||||
const UUIDv4 = '/[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-4[0-9A-Za-z]{3}-[89ABab][0-9A-Za-z]{3}-[0-9A-Za-z]{12}/m';
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
use ncc\Abstracts\ExceptionCodes;
|
||||
use Throwable;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class FileNotFoundException extends Exception
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
use ncc\Abstracts\ExceptionCodes;
|
||||
use Throwable;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class InvalidProjectConfigurationException extends Exception
|
||||
{
|
||||
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
use ncc\Objects\ProjectConfiguration\Project;
|
||||
use ncc\Utilities\Functions;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class ProjectConfiguration
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -9,6 +9,10 @@
|
|||
use ncc\Utilities\Functions;
|
||||
use ncc\Utilities\Validate;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Assembly
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
|
||||
use ncc\Utilities\Functions;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Build
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
|
||||
use ncc\Utilities\Functions;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class BuildConfiguration
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
|
||||
use ncc\Utilities\Functions;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Compiler
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
|
||||
use ncc\Utilities\Functions;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Dependency
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
|
||||
use ncc\Utilities\Functions;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Project
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
namespace ncc\Utilities;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Functions
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
use ncc\Abstracts\RegexPatterns;
|
||||
|
||||
/**
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class Validate
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -3,9 +3,8 @@
|
|||
namespace ncc;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author netkas
|
||||
*
|
||||
* @author Zi Xing Narrakas
|
||||
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||
*/
|
||||
class ncc
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue