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

mborne / remote-git / 14805371279

03 May 2025 12:08AM UTC coverage: 79.959% (-0.2%) from 80.124%
14805371279

push

github

mborne
chore(visibility): add toString method

0 of 1 new or added line in 1 file covered. (0.0%)

387 of 484 relevant lines covered (79.96%)

2.63 hits per line

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

0.0
/src/ProjectVisibility.php
1
<?php
2

3
namespace MBO\RemoteGit;
4

5
/**
6
 * Represents the visibility of a project.
7
 *
8
 * Note that internal is not supported by GitHub
9
 */
10
enum ProjectVisibility: string
11
{
12
    case PUBLIC = 'public';
13
    case PRIVATE = 'private';
14
    case INTERNAL = 'internal';
15

16
    public function toString(): string
17
    {
NEW
18
        return $this->value;
×
19
    }
20
}
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