Unsupported PHP app for analysing and displaying stats for Team Fortress 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

connected.php 696B

12345678910111213141516171819
  1. <?PHP
  2. class ConnectedHandler {
  3. /*-------------------------------------------------------------------------*\
  4. * Handles players connecting *
  5. * *
  6. * Line sample: address "ip:port" *
  7. * *
  8. * Note: Steam ID and team will be pending at this point. *
  9. \*-------------------------------------------------------------------------*/
  10. public function parseLine($date, $player, $playerdetails, $line) {
  11. // TODO: Implement me
  12. }
  13. }
  14. ?>