Added \ncc\Objects > ProjectDetectionResults
https://git.n64.cc/nosial/ncc/-/issues/28
This commit is contained in:
parent
03a7caa620
commit
2b78bdd959
1 changed files with 23 additions and 0 deletions
23
src/ncc/Objects/ProjectDetectionResults.php
Normal file
23
src/ncc/Objects/ProjectDetectionResults.php
Normal 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;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue