kphp icon indicating copy to clipboard operation
kphp copied to clipboard

Fix class name with trait bug

Open Danil42Russia opened this issue 3 years ago • 0 comments

Information

  • Type: Bugfix
  • Issue: #434

Code

<?php
trait Test {
  public function test() {
    echo __CLASS__;
  }
}

class Bu {
 use Test;
}

(new Bu())->test();

Before

Test

After

Bu

Danil42Russia avatar Feb 19 '22 19:02 Danil42Russia