Changeset 2307897
- Timestamp:
- 05/19/2020 11:27:05 AM (6 years ago)
- Location:
- wp-bullhorn-staffing
- Files:
-
- 3 edited
- 8 copied
-
tags/0.0.4 (copied) (copied from wp-bullhorn-staffing/trunk)
-
tags/0.0.4/bootstrap.php (copied) (copied from wp-bullhorn-staffing/trunk/bootstrap.php) (1 diff)
-
tags/0.0.4/composer.json (copied) (copied from wp-bullhorn-staffing/trunk/composer.json)
-
tags/0.0.4/composer.lock (copied) (copied from wp-bullhorn-staffing/trunk/composer.lock)
-
tags/0.0.4/index.php (copied) (copied from wp-bullhorn-staffing/trunk/index.php)
-
tags/0.0.4/readme.txt (copied) (copied from wp-bullhorn-staffing/trunk/readme.txt)
-
tags/0.0.4/src (copied) (copied from wp-bullhorn-staffing/trunk/src)
-
tags/0.0.4/src/Domain/Entities/CandidateFiles.php (modified) (2 diffs)
-
tags/0.0.4/vendor (copied) (copied from wp-bullhorn-staffing/trunk/vendor)
-
trunk/bootstrap.php (modified) (1 diff)
-
trunk/src/Domain/Entities/CandidateFiles.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-bullhorn-staffing/tags/0.0.4/bootstrap.php
r2307853 r2307897 4 4 * Plugin URI: 5 5 * Description: Bullhorn Staffing synchronisation plugin 6 * Version: 0.0. 36 * Version: 0.0.4 7 7 * Author: Think studio 8 8 * Author URI: https://think.studio/ -
wp-bullhorn-staffing/tags/0.0.4/src/Domain/Entities/CandidateFiles.php
r2307839 r2307897 116 116 } 117 117 118 public function resumeParseToCandidate($file Content, $name)118 public function resumeParseToCandidate($filePath, $name) 119 119 { 120 120 $response = \WPBullhornStaffing::instance()->request( … … 129 129 [ 130 130 'name' => 'FileContents', 131 'contents' => $fileContent,131 'contents' => fopen($filePath, 'r'), 132 132 'filename' => $name 133 133 ], -
wp-bullhorn-staffing/trunk/bootstrap.php
r2307853 r2307897 4 4 * Plugin URI: 5 5 * Description: Bullhorn Staffing synchronisation plugin 6 * Version: 0.0. 36 * Version: 0.0.4 7 7 * Author: Think studio 8 8 * Author URI: https://think.studio/ -
wp-bullhorn-staffing/trunk/src/Domain/Entities/CandidateFiles.php
r2307839 r2307897 116 116 } 117 117 118 public function resumeParseToCandidate($file Content, $name)118 public function resumeParseToCandidate($filePath, $name) 119 119 { 120 120 $response = \WPBullhornStaffing::instance()->request( … … 129 129 [ 130 130 'name' => 'FileContents', 131 'contents' => $fileContent,131 'contents' => fopen($filePath, 'r'), 132 132 'filename' => $name 133 133 ],
Note: See TracChangeset
for help on using the changeset viewer.