for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Entity Manager
*
* @category src\Batch
* @package src\Batch\common
* @author Judicaël Paquet <[email protected]>
* @copyright Copyright (c) 2013-2014 PAQUET Judicaël FR Inc. (https://github.com/las93)
* @license https://github.com/las93/venus2/blob/master/LICENSE.md Tout droit réservé à PAQUET Judicaël
* @version Release: 2.0.0
* @filesource https://github.com/las93/venus2
* @link https://github.com/las93
* @since 2.0.0
*/
namespace Venus\src\Batch\common;
use \Venus\core\Entity as CoreEntity;
abstract class Entity extends CoreEntity
{
* Constructor
* @access public
* @return object
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
public function __construct()
parent::__construct();
}
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.