MediaWiki  REL1_24
InvalidPassword.php
Go to the documentation of this file.
00001 <?php
00032 class InvalidPassword extends Password {
00033     public function crypt( $plaintext ) {
00034     }
00035 
00036     public function toString() {
00037         return '';
00038     }
00039 
00040     public function equals( $other ) {
00041         return false;
00042     }
00043 
00044     public function needsUpdate() {
00045         return false;
00046     }
00047 }