Version 1
[yaffs-website] / web / modules / contrib / devel / webprofiler / src / Helper / ClassShortenerInterface.php
1 <?php
2
3 namespace Drupal\webprofiler\Helper;
4
5 /**
6  * Interface ClassShortenerInterface
7  */
8 interface ClassShortenerInterface {
9
10   /**
11    * @param string $class
12    *
13    * @return string
14    */
15   public function shortenClass($class);
16
17 }