Added Nosial Copyright

This commit is contained in:
Zi Xing 2022-04-16 19:37:40 -04:00
parent c6955b45c1
commit c38b508ec7
14 changed files with 54 additions and 3 deletions

View file

@ -5,6 +5,10 @@
use ncc\Exceptions\FileNotFoundException; use ncc\Exceptions\FileNotFoundException;
use ncc\Exceptions\InvalidProjectConfigurationException; use ncc\Exceptions\InvalidProjectConfigurationException;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
abstract class ExceptionCodes abstract class ExceptionCodes
{ {
/** /**

View file

@ -2,6 +2,10 @@
namespace ncc\Abstracts; namespace ncc\Abstracts;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
abstract class RegexPatterns 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'; 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';

View file

@ -6,6 +6,10 @@
use ncc\Abstracts\ExceptionCodes; use ncc\Abstracts\ExceptionCodes;
use Throwable; use Throwable;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class FileNotFoundException extends Exception class FileNotFoundException extends Exception
{ {
/** /**

View file

@ -6,6 +6,10 @@
use ncc\Abstracts\ExceptionCodes; use ncc\Abstracts\ExceptionCodes;
use Throwable; use Throwable;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class InvalidProjectConfigurationException extends Exception class InvalidProjectConfigurationException extends Exception
{ {

View file

@ -8,6 +8,10 @@
use ncc\Objects\ProjectConfiguration\Project; use ncc\Objects\ProjectConfiguration\Project;
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class ProjectConfiguration class ProjectConfiguration
{ {
/** /**

View file

@ -9,6 +9,10 @@
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
use ncc\Utilities\Validate; use ncc\Utilities\Validate;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Assembly class Assembly
{ {
/** /**

View file

@ -6,6 +6,10 @@
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Build class Build
{ {
/** /**

View file

@ -6,6 +6,10 @@
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class BuildConfiguration class BuildConfiguration
{ {
/** /**

View file

@ -6,6 +6,10 @@
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Compiler class Compiler
{ {
/** /**

View file

@ -6,6 +6,10 @@
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Dependency class Dependency
{ {
/** /**

View file

@ -6,6 +6,10 @@
use ncc\Utilities\Functions; use ncc\Utilities\Functions;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Project class Project
{ {
/** /**

View file

@ -2,6 +2,10 @@
namespace ncc\Utilities; namespace ncc\Utilities;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Functions class Functions
{ {
/** /**

View file

@ -4,6 +4,10 @@
use ncc\Abstracts\RegexPatterns; use ncc\Abstracts\RegexPatterns;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
class Validate class Validate
{ {
/** /**

View file

@ -3,9 +3,8 @@
namespace ncc; namespace ncc;
/** /**
* * @author Zi Xing Narrakas
* @author netkas * @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*
*/ */
class ncc class ncc
{ {