• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

podio-community / podio-php / 5730982429

pending completion
5730982429

push

github

web-flow
Merge pull request #233 from podio-community/232-improvements-beta

fix: make podio_client first parameter of functions + remove podio_client member from models

235 of 235 new or added lines in 67 files covered. (100.0%)

916 of 2104 relevant lines covered (43.54%)

32.17 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/models/PodioUserStatus.php
1
<?php
2
/**
3
 * @see https://developers.podio.com/doc/users
4
 */
5
class PodioUserStatus extends PodioObject
6
{
7
    public function __construct($attributes = array())
8
    {
9
        parent::__construct();
×
10
        $this->property('properties', 'hash');
×
11
        $this->property('inbox_new', 'integer');
×
12
        $this->property('calendar_code', 'string');
×
13
        $this->property('task_mail', 'string');
×
14
        $this->property('mailbox', 'string');
×
15

16
        $this->has_one('user', 'User');
×
17
        $this->has_one('profile', 'Contact');
×
18

19
        $this->init($attributes);
×
20
    }
21

22
    /**
23
     * @see https://developers.podio.com/doc/users/get-user-status-22480
24
     */
25
    public static function get(PodioClient $podio_client)
26
    {
27
        return self::member($podio_client, $podio_client->get("/user/status"));
×
28
    }
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc