| 1 | <?php |
||
| 13 | class Carbon_Breadcrumb_Factory { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Verify the class name to use in factory. |
||
| 17 | * Make sure that the class exists. |
||
| 18 | * |
||
| 19 | * @static |
||
| 20 | * @access public |
||
| 21 | * |
||
| 22 | * @param string $class The class name. |
||
| 23 | * @param string $message The message to display in the exception if the class does not exist. |
||
| 24 | * @return string $class The class name. |
||
| 25 | * |
||
| 26 | * @throws Carbon_Breadcrumb_Exception If the built class name does not exist. |
||
| 27 | */ |
||
| 28 | public static function verify_class_name( $class, $message = '' ) { |
||
| 39 | |||
| 40 | } |
||
| 41 |