verify() public method

Verify that the configuration is complete.
public verify ( )
Exemplo n.º 1
0
 /**
  * Build the Client with the Airbrake Configuration.
  *
  * @throws Airbrake\Exception
  * @param Configuration $configuration
  */
 public function __construct(Configuration $configuration)
 {
     $configuration->verify();
     $this->configuration = $configuration;
     $this->connection = new Connection($configuration);
 }