for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FondBot\Foundation\Commands;
use FondBot\Conversation\Context;
use FondBot\Conversation\ContextManager;
class SaveContext
{
private $context;
public function __construct(Context $context)
$this->context = $context;
}
public function handle(ContextManager $manager): void
$manager->save($this->context);