September 2016
Intermediate to advanced
1091 pages
21h 41m
English
Interfaces are useful tools for systems architects and are often used to prototype an Application Programming Interface (API). Interfaces don't contain actual code, but can contain names of methods as well as method signatures.
All methods identified in the Interface have a visibility level of public.
ConnectionAwareInterface identifies a method, setConnection(), which requires an instance of Connection as an argument:interface ConnectionAwareInterface
{
public function setConnection(Connection $connection);
}implements ...Read now
Unlock full access