Fork me on GitHub
a Sensio Labs Product

Brazilian Kangaroo (v3.17.0) edition

Rule get_class_to_class_keyword

Replace get_class calls on object variables with class keyword syntax.

Warning

Using this rule is risky

Risky if the get_class function is overridden.

Examples

Example #1

--- Original
+++ New
 <?php
-get_class($a);
+$a::class;

Example #2

--- Original
+++ New
 <?php

 $date = new \DateTimeImmutable();
-$class = get_class($date);
+$class = $date::class;

Rule sets

The rule is part of the following rule sets:

@PHP80Migration:risky

Using the @PHP80Migration:risky rule set will enable the get_class_to_class_keyword rule.

@Symfony:risky

Using the @Symfony:risky rule set will enable the get_class_to_class_keyword rule.

The logo is © 2010-2022 Sensio Labs