Ticket #843 (closed defect: fixed)

Opened 16 months ago

Last modified 16 months ago

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

Changed 16 months ago by jwage

  • status changed from new to closed
  • resolution set to fixed

(In [3955]) fixes #843

Changed 16 months ago by jwage

  • milestone changed from 0.10.4 to 0.10.3
Note: See TracTickets for help on using tickets.