change includes to requires

This commit is contained in:
James 2019-06-26 10:07:28 +01:00
parent 3979cc114d
commit 6dc0e65802

View File

@ -4,11 +4,11 @@
//2a. Adds a no-label label to any issues with no labels (excluding the no-label and no-milestone)
//2b. Also removes the label if present on an issue with a label (excluding the no-label and no-milestone)
include("src/Client.php");
include("src/Issue.php");
include("src/Label.php");
include("src/Repo.php");
$config=include("config.php");
require("src/Client.php");
require("src/Issue.php");
require("src/Label.php");
require("src/Repo.php");
$config=require("config.php");
//pass cmd line args
if($argc<3){