Skip to content

Instantly share code, notes, and snippets.

@harikt
Created April 15, 2011 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harikt/920988 to your computer and use it in GitHub Desktop.
Save harikt/920988 to your computer and use it in GitHub Desktop.
Fuel PHP is a 5.3 framework
<?php
/**
* Fuel
*
* Fuel is a fast, lightweight, community driven PHP5 framework.
*
* @package Fuel
* @version 1.0
* @author Fuel Development Team
* @license MIT License
* @copyright 2010 - 2011 Fuel Development Team
* @link http://fuelphp.com
*/
namespace Fuel\Core\Cache;
class Exception extends \Fuel\Core\Exception {}
/*
* Current implementation
*
* namespace Fuel\Core;
* class Cache_Exception extends Fuel_Exception {}
*
* Is there any advantage of this way? We already have namespace now in PHP 5.3 and are using it .
* though I think it meets http://groups.google.com/group/php-standards/web/psr-0-final-proposal?pli=1
* One more doubt is can we utilise other third party libraries inside fuel?
* Sorry if I was lazy not finding the right explanation, I would be greatful if you point me there :).
* Thanks
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment