Skip to content

Commit

Permalink
Trace: Fix Namespace for Low Level Loader #25
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacarpet committed Sep 5, 2018
1 parent 9ee127f commit 85896b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/A1comms/GaeSupportLaravel/Trace/LowLevelLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ public static function getList()
return [
// OpenCensus provides a basic Laravel trace adapter,
// which covered Eloquent and view compilation.
OpenCensus\Trace\Integrations\Laravel::class,
\OpenCensus\Trace\Integrations\Laravel::class,
// Also load our own extended Laravel trace set.
A1comms\GaeSupportLaravel\Trace\Integration\LowLevel\LaravelExtended::class,
\A1comms\GaeSupportLaravel\Trace\Integration\LowLevel\LaravelExtended::class,
// Trace our other basic functions...
OpenCensus\Trace\Integrations\Mysql::class,
OpenCensus\Trace\Integrations\PDO::class,
OpenCensus\Trace\Integrations\Memcached::class,
A1comms\GaeSupportLaravel\Trace\Integration\Guzzle\TraceProvider::class,
\OpenCensus\Trace\Integrations\Mysql::class,
\OpenCensus\Trace\Integrations\PDO::class,
\OpenCensus\Trace\Integrations\Memcached::class,
\A1comms\GaeSupportLaravel\Trace\Integration\Guzzle\TraceProvider::class,
];
}
}

0 comments on commit 85896b5

Please sign in to comment.