@@ -69,7 +69,7 @@ class Application implements
6969 public readonly ApplicationId $ id ;
7070
7171 /**
72- * Gets windows list and methods for working with windows.
72+ * Gets a windows list and methods for working with windows.
7373 *
7474 * @api
7575 */
@@ -138,7 +138,7 @@ class Application implements
138138 public readonly bool $ isDebug ;
139139
140140 /**
141- * Gets running state of an application.
141+ * Gets the running state of an application.
142142 *
143143 * Contains {@see true} in case of application is running
144144 * or {@see false} instead.
@@ -182,7 +182,7 @@ class Application implements
182182 */
183183 public function __construct (
184184 /**
185- * Gets an information DTO about the application
185+ * Gets information DTO about the application
186186 * with which it was created.
187187 */
188188 public readonly ApplicationCreateInfo $ info = new ApplicationCreateInfo (),
@@ -202,7 +202,7 @@ public function __construct(
202202 $ this ->extensions = new Registry ($ this ->listener , $ info ->extensions );
203203 foreach ($ this ->extensions ->boot ($ this ) as $ property => $ extension ) {
204204 // Direct access to dynamic property is 5+ times
205- // faster than magic `__get` call.
205+ // faster than the magic `__get` call.
206206 $ this ->__set ($ property , $ extension );
207207 }
208208
@@ -311,7 +311,7 @@ protected function createWindowManager(
311311 }
312312
313313 /**
314- * Register list of protocol names that will be
314+ * Register a list of protocol names that will be
315315 * intercepted by the application.
316316 */
317317 private function registerSchemes (): void
@@ -348,15 +348,15 @@ private function onWindowClose(): void
348348 /**
349349 * Handles an application started event.
350350 *
351- * Resolve main window lazy proxy (facade).
351+ * Resolve the main window lazy proxy (facade).
352352 */
353353 private function onApplicationStarted (): void
354354 {
355355 $ this ->windows ->boot ();
356356 }
357357
358358 /**
359- * Creates local (application-aware) event listener
359+ * Creates a local (application-aware) event listener
360360 * based on the provided dispatcher.
361361 */
362362 protected function createEventListener (?EventDispatcherInterface $ dispatcher ): EventListener
@@ -439,7 +439,7 @@ private function shouldNotStart(): bool
439439 /**
440440 * Runs the application, starting the main event loop.
441441 *
442- * This method blocks main thread until the
442+ * This method blocks the main thread until the
443443 * application is quit.
444444 *
445445 * @api
0 commit comments