January 2020
Intermediate to advanced
288 pages
6h 45m
English
The programming language used for the code samples in this book is a generalized object-oriented programming language. Its syntax is a mix of PHP and Java. It has the following properties:
public function foo(Bar bar): Baz
{
// returns an instance of `Baz`
}
public function foo(Bar? bar): Baz?
{
// allow in instance of `Bar`, or `null`
// returns an instance of `Baz`, or `null`
}
public ...