/**
 * Check the client interface by name.
 *
 * @param   string  $identifier  String identifier for the application interface
 *
 * @return  boolean  True if this application is of the given type client interface.
 *
 * @since   4.0.0
 */
public function isClient($identifier)
{
    return $identifier === 'cli';
}