result() public method

Example: $policy = $builder->result();
public result ( ) : array
return array An array of policy data
 public function testConstructWithExistingPolicy()
 {
     $policy = ['bindings' => [['role' => 'test', 'members' => ['user:test@test.com']]], 'etag' => 'foo', 'version' => 2];
     $builder = new PolicyBuilder($policy);
     $result = $builder->result();
     $this->assertEquals($policy, $result);
 }