Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4de5b50

Browse files
committedJun 19, 2015
improved coding style
1 parent e07f521 commit 4de5b50

File tree

113 files changed

+753
-744
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+753
-744
lines changed
 

‎src/Application/Application.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ class Application extends Nette\Object
3131
/** @var string */
3232
public $errorPresenter;
3333

34-
/** @var callable[] function(Application $sender); Occurs before the application loads presenter */
34+
/** @var callable[] function (Application $sender); Occurs before the application loads presenter */
3535
public $onStartup;
3636

37-
/** @var callable[] function(Application $sender, \Exception $e = NULL); Occurs before the application shuts down */
37+
/** @var callable[] function (Application $sender, \Exception $e = NULL); Occurs before the application shuts down */
3838
public $onShutdown;
3939

40-
/** @var callable[] function(Application $sender, Request $request); Occurs when a new request is received */
40+
/** @var callable[] function (Application $sender, Request $request); Occurs when a new request is received */
4141
public $onRequest;
4242

43-
/** @var callable[] function(Application $sender, Presenter $presenter); Occurs when a presenter is created */
43+
/** @var callable[] function (Application $sender, Presenter $presenter); Occurs when a presenter is created */
4444
public $onPresenter;
4545

46-
/** @var callable[] function(Application $sender, IResponse $response); Occurs when a new response is ready for dispatch */
46+
/** @var callable[] function (Application $sender, IResponse $response); Occurs when a new response is ready for dispatch */
4747
public $onResponse;
4848

49-
/** @var callable[] function(Application $sender, \Exception $e); Occurs when an unhandled exception occurs in the application */
49+
/** @var callable[] function (Application $sender, \Exception $e); Occurs when an unhandled exception occurs in the application */
5050
public $onError;
5151

5252
/** @var Request[] */

‎src/Application/ErrorPresenter.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
namespace NetteModule;
99

10-
use Nette,
11-
Nette\Application,
12-
Tracy\ILogger;
10+
use Nette;
11+
use Nette\Application;
Has conversations. Original line has conversations.
12+
use Tracy\ILogger;
1313

1414

1515
/**

0 commit comments

Comments
 (0)
Please sign in to comment.