File: autoload.php

package info (click to toggle)
php-mock 2.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 340 kB
  • sloc: php: 1,740; makefile: 18; xml: 17; sh: 7
file content (9 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
<?php

// Compatibility with phpunit/php-text-template v2

if (!class_exists(SebastianBergmann\Template\Template::class)
    && class_exists(Text_Template::class)
) {
    class_alias(Text_Template::class, SebastianBergmann\Template\Template::class);
}