8000 [12.x] Types: InteractsWithPivotTable::sync by liamduckett · Pull Request #55762 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[12.x] Types: InteractsWithPivotTable::sync #55762

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 12.x
Choose a base branch
from

Conversation

liamduckett
Copy link
Contributor

InteractsWithPivotTable::sync currently works when passing a single ID to it:

$category->food()->sync($item->id);

// works due to:
protected function parseIds($value)
{
    if ($value instanceof Model) {
        // ...
    }

    if ($value instanceof EloquentCollection) {
        // ...
    }

    if ($value instanceof BaseCollection || is_array($value)) {
        // ...
    }

    return (array) $value;
}

However, static analysis doesn't know about this, due to:

  /**
   * Sync the intermediate tables with a list of IDs or collection of models.
   *
   * @param  \Illuminate\Support\Collection|\Illuminate\Database\Eloquent\Model|array  $ids
   * @param  bool  $detaching
   * @return array{attached: array, detached: array, updated: array}
   */
  public function sync($ids, $detaching = true)

My usecase only uses int $ids but I thought it best to add string whilst I was on (for uuids).

I also applied this change to methods that call the sync method.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
0