public function Application::setName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Application.php \Symfony\Component\Console\Application::setName()
Sets the application name.
Parameters
string $name The application name:
File
- vendor/
symfony/ console/ Application.php, line 280
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
public function setName($name) {
$this->name = $name;
}