'session' => [
// this is the name of the session cookie used for login on the frontend
'name' => 'advanced-frontend',
],
public function setName($value)
{
$this->freeze();
session_name($value);
$this->unfreeze();
}
Предположу, что в файле у вас находится представление, тогда я бы добавил ещё и буферизацию как то так