Skip to content

Commit

Permalink
add support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
t1nkl committed Mar 20, 2024
1 parent 71d970a commit 0f16714
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022 Kyryll Kovalenko "kyryll.kovalenko@gmail.com"
Copyright (c) 2022-2024 Kyryll Kovalenko "kyryll.kovalenko@gmail.com"

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"ATTR_EMULATE_PREPARES"
],
"type": "library",
"version": "1.0.3",
"version": "1.0.4",
"license": "MIT",
"authors": [
{
Expand All @@ -21,7 +21,7 @@
"require": {
"php": "^7.4|^8.0|^8.1",
"ext-pdo": "*",
"laravel/framework": "^7.0|^8.0|^9.0|^10.0"
"laravel/framework": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 4 additions & 3 deletions src/Database/PostgresConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
class PostgresConnection extends IlluminatePostgresConnection
{
/**
* @param PDOStatement $statement
* @param array $bindings
* @param PDOStatement $statement
* @param array $bindings
* @return void
*/
public function bindValues($statement, $bindings)
{
Expand All @@ -42,7 +43,7 @@ public function bindValues($statement, $bindings)
}

/**
* @param array $bindings
* @param array $bindings
* @return array
*/
public function prepareBindings(array $bindings)
Expand Down

0 comments on commit 0f16714

Please sign in to comment.