Skip to content

unikent/lib-php-classmark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lib-php-classmark

Latest Stable Version StyleCI

Full API docs available here: http://unikent.github.io/lib-php-classmark/

PHP library for helping developers with classmarks

Add this to your composer require:

  • "unikent/lib-php-classmark": "dev-master"

Then compare classmarks like so:

$parser = new \unikent\Classmark\Classmark();

$classmark = new \unikent\Classmark\Classmark("C900x");
$classmark2 = new \unikent\Classmark\Classmark("C800x");

if ($classmark.compareTo(classmark2)) {
    echo "Well done!";
}