1.0.0 Alpha Release #59

Merged
netkas merged 213 commits from v1.0.0_alpha into master 2023-01-29 23:27:58 +00:00
Showing only changes of commit 2b78bdd959 - Show all commits

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;
}