-
Olav Morken authored
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@302 44740490-163a-0410-bde0-09ae8108e29a
Olav Morken authoredgit-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@302 44740490-163a-0410-bde0-09ae8108e29a
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ModifiedInfo.php 390 B
<?php
/**
* The ModifiedInfo interface allows an object to export information about
* whether it has been modified since it was deserialized or not.
*/
interface SimpleSAML_ModifiedInfo {
/**
* This function is used to determine if this object has changed
* since it was deserialized.
*
* @return TRUE if it has changed, FALSE if not.
*/
public function isModified();
}
?>