When i create a project which php jira rest client, i found this error
This code i found this error
"
if (!function_exists('createProject')){
function createProject(){
$project = new Project();
$project->setName("New Project")
->setKey("NP")
->setDescription("This is a new project");
$requestData = array(
'issueTypes' => array('Bug','Task')
);
try {
$projectService = new ProjectService();
$result = $projectService->createProject($project,$requestData);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage()); }
}
}
"
This code in codeIgniter 4
Um, you have not given us the error here?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.