You are here

public function Application::getName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Application.php \Symfony\Component\Console\Application::getName()

Gets the name of the application.

Return value

string The application name

2 calls to Application::getName()
Application::getLongVersion in vendor/symfony/console/Application.php
Returns the long version of the application.
Application::renderException in vendor/symfony/console/Application.php
Renders a caught exception.

File

vendor/symfony/console/Application.php, line 270

Class

Application
An Application is the container for a collection of commands.

Namespace

Symfony\Component\Console

Code

public function getName() {
  return $this->name;
}