for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Drupal\Driver;
/**
* Implements DriverInterface.
*/
class BlackboxDriver extends BaseDriver {
* {@inheritdoc}
public function isBootstrapped() {
// Assume the blackbox is always bootstrapped.
return TRUE;
}