| 1 | <?php |
||
| 7 | class Carbon_Breadcrumb_Factory { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Verify the class name to use in factory. |
||
| 11 | * Make sure that the class exists. |
||
| 12 | * |
||
| 13 | * @static |
||
| 14 | * @access public |
||
| 15 | * |
||
| 16 | * @param string $class The class name. |
||
| 17 | * @param string $message The message to display in the exception if the class does not exist. |
||
| 18 | * @return string $class The class name. |
||
| 19 | * |
||
| 20 | * @throws Carbon_Breadcrumb_Exception if the built class name does not exist |
||
| 21 | */ |
||
| 22 | 1 | public static function verify_class_name( $class, $message = '' ) { |
|
| 33 | |||
| 34 | } |