for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace diecoding\aws\s3\base\commands\traits;
/**
* Trait Async
*
* @package diecoding\aws\s3\base\commands\traits
*/
trait Async
{
/** @var bool */
private $isAsync = false;
* @return $this
final public function async()
$this->isAsync = true;
return $this;
}
* @return bool
final public function isAsync(): bool
return $this->isAsync;