Hello!
Method insertBefore doesn't work correctly with the first element in a list.
You can't insert before the first element.
Test case:
$l = new \DS\LinkedList\Classes\LinkedList();
$l->insert("1");
$l->insert("2");
$l->insert("3");
$l->insertBefore('0','1');
$l->display();
Expected:
Actual: