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 | 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 $profiler ) | ||
| $profiler | ?\Yiisoft\Db\Profiler\ProfilerInterface | |
public function setProfiler(?ProfilerInterface $profiler): void
{
$this->profiler = $profiler;
}
Signup or Login in order to comment.