Skip to content

Commit

Permalink
Added LdJsonable interface
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercd100 committed Feb 22, 2019
1 parent 7027218 commit 34b63ce
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to `zenapply/common` will be documented in this file.

### 6.1.0
- Added LdJsonable interface

### 6.0.0
- Added getEmployeeId and getApplicantId to Employable

Expand Down
13 changes: 13 additions & 0 deletions src/Interfaces/LdJsonable.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Zenapply\Common\Interfaces;

interface LdJsonable
{
/**
* Returns Schema.org LdJson string
*
* @return string
*/
public function toLdJson();
}

0 comments on commit 34b63ce

Please sign in to comment.