EVOLUTION-MANAGER
Edit File: Captured.php
<?php namespace BotMan\BotMan\Interfaces\Middleware; use BotMan\BotMan\BotMan; use BotMan\BotMan\Messages\Incoming\IncomingMessage; interface Captured { /** * Handle a captured message. * * @param IncomingMessage $message * @param callable $next * @param BotMan $bot * * @return mixed */ public function captured(IncomingMessage $message, $next, BotMan $bot); }