castle/castle-php

View on GitHub
lib/Castle/Models/Context.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

class Castle_Context extends RestModel
{
  public function location()
  {
    return $this->hasOne('RestModel', 'location');
  }

  public function userAgent()
  {
    return $this->hasOne('RestModel', 'user_agent');
  }
}