Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: yourivw/LEClient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: spinupwp/LEClient
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 6 commits
  • 2 files changed
  • 1 contributor

Commits on Jul 26, 2019

  1. Copy the full SHA
    c64b24f View commit details
  2. Update composer.json file

    A5hleyRich committed Jul 26, 2019
    Copy the full SHA
    f024115 View commit details

Commits on Dec 6, 2024

  1. Copy the full SHA
    f98bda1 View commit details
  2. Update composer.json

    A5hleyRich committed Dec 6, 2024
    Copy the full SHA
    29b603f View commit details
  3. Copy the full SHA
    f750463 View commit details

Commits on Jan 13, 2025

  1. Copy the full SHA
    1996c0d View commit details
Showing with 5 additions and 5 deletions.
  1. +1 −1 composer.json
  2. +4 −4 src/LEAccount.php
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "yourivw/leclient",
"name": "spinupwp/leclient",
"type": "library",
"description": "PHP LetsEncrypt client library for ACME v2",
"license": "MIT",
8 changes: 4 additions & 4 deletions src/LEAccount.php
Original file line number Diff line number Diff line change
@@ -133,9 +133,9 @@ private function getLEAccountData()
{
$this->id = isset($post['body']['id']) ? $post['body']['id'] : '';
$this->key = $post['body']['key'];
$this->contact = $post['body']['contact'];
$this->contact = isset($post['body']['contact']) ? $post['body']['contact'] : '';
$this->agreement = isset($post['body']['agreement']) ? $post['body']['agreement'] : '';
$this->initialIp = $post['body']['initialIp'];
$this->initialIp = isset($post['body']['initialIp']) ? $post['body']['initialIp'] : '';
$this->createdAt = $post['body']['createdAt'];
$this->status = $post['body']['status'];
}
@@ -162,9 +162,9 @@ public function updateAccount($email)
{
$this->id = isset($post['body']['id']) ? $post['body']['id'] : '';
$this->key = $post['body']['key'];
$this->contact = $post['body']['contact'];
$this->contact = isset($post['body']['contact']) ? $post['body']['contact'] : '';
$this->agreement = isset($post['body']['agreement']) ? $post['body']['agreement'] : '';
$this->initialIp = $post['body']['initialIp'];
$this->initialIp = isset($post['body']['initialIp']) ? $post['body']['initialIp'] : '';
$this->createdAt = $post['body']['createdAt'];
$this->status = $post['body']['status'];
if($this->log instanceof \Psr\Log\LoggerInterface)