Fix not return in a constructor

This commit is contained in:
Laurent Destailleur 2016-08-31 20:03:54 +02:00
parent 3e84d227b3
commit 64ab02234b
2 changed files with 0 additions and 3 deletions

View File

@ -47,8 +47,6 @@ class AccountancyCategory
*/ */
public function __construct($db) { public function __construct($db) {
$this->db = $db; $this->db = $db;
return 1;
} }
/** /**

View File

@ -95,7 +95,6 @@ class BookKeeping extends CommonObject
*/ */
public function __construct(DoliDB $db) { public function __construct(DoliDB $db) {
$this->db = $db; $this->db = $db;
return 1;
} }
/** /**