Added \ncc\Objects > ProjectDetectionResults

https://git.n64.cc/nosial/ncc/-/issues/28
This commit is contained in:
Netkas 2022-12-16 00:39:05 -05:00
parent 03a7caa620
commit 2b78bdd959

View file

@ -0,0 +1,23 @@
<?php /** @noinspection PhpMissingFieldTypeInspection */
namespace ncc\Objects;
use ncc\Abstracts\ProjectType;
class ProjectDetectionResults
{
/**
* The directory path that contains the project root (the directory that contains the project.json, etc.. file)
*
* @var string
*/
public $ProjectPath;
/**
* The type of project that was detected
*
* @see ProjectType
* @var string
*/
public $ProjectType;
}