Skip to content

Commit 524d7d6

Browse files
committed
Tiny typos
1 parent 7252aa7 commit 524d7d6

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
- improved Clockwork rest api with only/except filters
134134
- improved handling of corrupted index records in file storage
135135
- improved cleaned up the code-base, added and improved comments, use modern php features
136-
- removed Laravel total, initalization, boot and run timeline events
136+
- removed Laravel total, initialization, boot and run timeline events
137137
- removed legacy clockwork.controller events
138138
- removed duplicate file/line information from collected metadata
139139
- fixed authentication route not being registered when web ui is disabled
@@ -209,7 +209,7 @@
209209
- improved Laravel events data source to include Laravel namespace in the default ignored events
210210
- improved Laravel views data source to strip view data prefixed with __
211211
- improved PHP data source to not set request time for cli commands
212-
- improved serializer to ommit data below depth limit, support debugInfo, jsonSerialize and toArray methods (partially implemented by mahagr, thanks!)
212+
- improved serializer to omit data below depth limit, support debugInfo, jsonSerialize and toArray methods (partially implemented by mahagr, thanks!)
213213
- improved log to allow overriding serializer settings via context, no longer enabled toString by default
214214
- improved Request class now has pre-populated request time on creation
215215
- improved StackTrace helper with limit option, last method, fixed filter output keys
@@ -357,7 +357,7 @@
357357

358358
- added new integration for vanilla PHP (thanks martbean)
359359
- added support for collecting authenticated user info
360-
- added bunch of helper methods for adding data like databse queries or events to Clockwork
360+
- added bunch of helper methods for adding data like database queries or events to Clockwork
361361
- added serializer options to the config files
362362
- updated web UI to match latest Chrome version
363363
- improved collecting of exceptions
@@ -490,7 +490,7 @@ UPGRADING
490490

491491
- update the required Clockwork version to ^2.0 in your composer.json
492492
- PHP 5.3 - no longer supported, you can continue using the latest 1.x version
493-
- CodeIgniter - no longer supported, you can continue using the lastest 1.x version
493+
- CodeIgniter - no longer supported, you can continue using the latest 1.x version
494494
- Slim 2 - update the imported namespace from Clockwork\Support\Slim to Clockwork\Support\Slim\Legacy
495495
- ability to register additional data sources via Clockwork config was removed, please call app('clockwork')->addDataSource(...) in your own service provider
496496

@@ -623,7 +623,7 @@ UPGRADING
623623
- added support for collecting emails and views data from Laravel
624624
- added --age argument to Laravel artisan clockwork::clean command, specifies how old the request data must be to be deleted (in hours)
625625
- improved Laravel service provider
626-
- fixed compatibilty with latest Laravel 4.1
626+
- fixed compatibility with latest Laravel 4.1
627627

628628
1.3
629629
NOTE: Clockwork\Request\Log::log method arguments have been changed from log($message, $level) to log($level, $message), levels are now specified via Psr\Log\LogLevel class, it's recommended to use shortcut methods for various levels (emergency, alert, critical, error, warning, notice, info and debug($message))

Clockwork/Clockwork.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ public function setStorage(StorageInterface $storage)
267267
return $this;
268268
}
269269

270-
// Get an authenitcator implementation
270+
// Get an authenticator implementation
271271
public function getAuthenticator()
272272
{
273273
return $this->authenticator;

Clockwork/DataSource/LaravelNotificationsDataSource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ protected function updateLastNotification($notification)
148148
return true;
149149
}
150150

151-
// Resolve notification channnel specific data
151+
// Resolve notification channel specific data
152152
protected function resolveChannelSpecific($event)
153153
{
154154
if (method_exists($event->notification, 'toMail')) {

Clockwork/Request/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ public function timeline()
358358
return $this->currentTimeline;
359359
}
360360

361-
// Add a new overriden property
361+
// Add a new overridden property
362362
public function override($property, $value)
363363
{
364364
$this->overrides[$property] = $value;

Clockwork/Storage/Search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Search
1616
public $name = [];
1717
public $type = [];
1818

19-
// Whether to stop search on the first not mathcing request
19+
// Whether to stop search on the first not matching request
2020
public $stopOnFirstMismatch = false;
2121

2222
// Create a new instance, takes search parameters and additional options

Clockwork/Storage/SqlSearch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct($search = [])
2222
$this->buildQuery();
2323
}
2424

25-
// Creates a new isntance from a base Search class instance
25+
// Creates a new instance from a base Search class instance
2626
public static function fromBase(Search $search = null)
2727
{
2828
return new static((array) $search);

Clockwork/Support/Laravel/config/clockwork.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
// SQL database to use, can be a name of database configured in database.php or a path to a SQLite file
297297
'storage_sql_database' => env('CLOCKWORK_STORAGE_SQL_DATABASE', storage_path('clockwork.sqlite')),
298298

299-
// SQL table name to use, the table is automatically created and udpated when needed
299+
// SQL table name to use, the table is automatically created and updated when needed
300300
'storage_sql_table' => env('CLOCKWORK_STORAGE_SQL_TABLE', 'clockwork'),
301301

302302
// Maximum lifetime of collected metadata in minutes, older requests will automatically be deleted, false to disable

Clockwork/Support/Vanilla/Clockwork.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,19 +411,19 @@ protected function incomingRequest()
411411
]);
412412
}
413413

414-
// Return the underlaying Clockwork instance
414+
// Return the underlying Clockwork instance
415415
public function getClockwork()
416416
{
417417
return $this->clockwork;
418418
}
419419

420-
// Pass any method calls to the underlaying Clockwork instance
420+
// Pass any method calls to the underlying Clockwork instance
421421
public function __call($method, $args = [])
422422
{
423423
return $this->clockwork->$method(...$args);
424424
}
425425

426-
// Pass any static method calls to the underlaying Clockwork instance
426+
// Pass any static method calls to the underlying Clockwork instance
427427
public static function __callStatic($method, $args = [])
428428
{
429429
return static::instance()->$method(...$args);

Clockwork/Support/Vanilla/config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
// Collect only errors (requests with HTTP 4xx and 5xx responses)
6666
'errors_only' => isset($_ENV['CLOCKWORK_REQUESTS_ERRORS_ONLY']) ? $_ENV['CLOCKWORK_REQUESTS_ERRORS_ONLY'] : false,
6767

68-
// Response time threshold in miliseconds after which the request will be marked as slow
68+
// Response time threshold in milliseconds after which the request will be marked as slow
6969
'slow_threshold' => isset($_ENV['CLOCKWORK_REQUESTS_SLOW_THRESHOLD']) ? $_ENV['CLOCKWORK_REQUESTS_SLOW_THRESHOLD'] : null,
7070

7171
// Collect only slow requests
@@ -158,7 +158,7 @@
158158
'storage_sql_username' => isset($_ENV['CLOCKWORK_STORAGE_SQL_USERNAME']) ? $_ENV['CLOCKWORK_STORAGE_SQL_USERNAME'] : null,
159159
'storage_sql_password' => isset($_ENV['CLOCKWORK_STORAGE_SQL_PASSWORD']) ? $_ENV['CLOCKWORK_STORAGE_SQL_PASSWORD'] : null,
160160

161-
// SQL table name to use, the table is automatically created and udpated when needed
161+
// SQL table name to use, the table is automatically created and updated when needed
162162
'storage_sql_table' => isset($_ENV['CLOCKWORK_STORAGE_SQL_TABLE']) ? $_ENV['CLOCKWORK_STORAGE_SQL_TABLE'] : 'clockwork',
163163

164164
// Maximum lifetime of collected metadata in minutes, older requests will automatically be deleted, false to disable

0 commit comments

Comments
 (0)