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\InvalidProjectConfigurationException;
/**
* @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
*/
abstract class ExceptionCodes
{
/**

View file

@ -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';

View file

@ -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
{
/**

View file

@ -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
{

View file

@ -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
{
/**

View file

@ -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
{
/**

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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