2013-10-23 11:10:42 +03:00
|
|
|
# 3.2.0 (unreleased)
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
|
|
* Minimum PHP version raised to 5.3.3
|
2013-12-19 16:27:54 +13:00
|
|
|
* DataObject::validate() method visibility changed to public
|
2013-10-23 11:10:42 +03:00
|
|
|
|
|
|
|
## Changelog
|
|
|
|
|
2013-12-19 16:27:54 +13:00
|
|
|
### DataObject::validate() method visibility changed to public
|
|
|
|
|
|
|
|
The visibility of `DataObject::validate()` has been changed from `protected` to `public`.
|
|
|
|
|
|
|
|
Any existing classes that currently set this as `protected` should be changed like in
|
|
|
|
this example:
|
|
|
|
|
|
|
|
::php
|
|
|
|
class MyDataClass extends DataObject {
|
|
|
|
...
|
|
|
|
public function validate() {
|
|
|
|
...
|
|
|
|
}
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
### Bugfixes
|