Trait Yiisoft\Db\Profiler\ProfilerAwareTrait
| Implemented by | Yiisoft\Db\Driver\Pdo\AbstractPdoCommand, Yiisoft\Db\Driver\Pdo\AbstractPdoConnection |
|---|
Provides access to the database profiler, a tool for collecting and analyzing database queries.
This can be useful for debugging and optimizing database performance.
Protected Properties
| Property | Type | Description | Defined By |
|---|---|---|---|
| $profiler | Yiisoft\Db\Profiler\ProfilerInterface|null | Yiisoft\Db\Profiler\ProfilerAwareTrait |
Public Methods
| Method | Description | Defined By |
|---|---|---|
| setProfiler() | Yiisoft\Db\Profiler\ProfilerAwareTrait |
Property Details
Method Details
| public void setProfiler ( Yiisoft\Db\Profiler\ProfilerInterface|null $profiler ) | ||
| $profiler | Yiisoft\Db\Profiler\ProfilerInterface|null | |
public function setProfiler(?ProfilerInterface $profiler): void
{
$this->profiler = $profiler;
}
Signup or Login in order to comment.