Ticket #843 (closed defect: fixed)
Builder setBaseClassesDirectory method does nothing
| Reported by: | inakiabt | Owned by: | lsmith |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.10.3 |
| Component: | Import/Export | Version: | 0.10.0 |
| Severity: | Keywords: | builder setBaseClassesDirectory | |
| Cc: | Has Test: | ||
| Status: | Has Patch: |
Description
The "setBaseClassesDirectory" method in Builder class doesn't set the parameter.
I don't think It's on purpose.
This bug is on 0.10.2 and on the actual version, I didn't checked it on other versions.
Here the method:
/**
- setBaseClassesDirectory *
- @return void */
public function setBaseClassesDirectory($baseClassesDirectory) {
$this->_baseClassesDirectory;
}
Fix:
/**
- setBaseClassesDirectory *
- @return void */
public function setBaseClassesDirectory($baseClassesDirectory) {
$this->_baseClassesDirectory = $baseClassesDirectory;
}
Change History
Note: See
TracTickets for help on using
tickets.