public function ShowApplications(ApplyDAL $aDAL)
 {
     foreach ($aDAL->getUnserializedApplys() as $applys) {
         array_push($this->newApplys, $applys);
     }
     return $this->newApplys;
 }
Example #2
0
 public function __construct()
 {
     if (file_exists(self::$path)) {
         self::$databaseFile = fopen(self::$path, "a+");
         fclose(self::$databaseFile);
     }
 }