jeyroik/toncenter-php-sdk

View on GitHub
src/components/THasDispatchers.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace tonc\components;

trait THasDispatchers
{
    protected function buildDispatcher(string $class)
    {
        return new $class();
    }
}