For some classes like `WKBParser` and so on, instantiating them is a litte bit too boilerplate-y. So, we would like be to be able to do: ```php WKBParser::parse($something); ``` instead of ```php $wkbParser = app()-make(WKBParser::class); $wkbParser->parse($something); ```