We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For now there is only one infer mention in readme. And it says:
infer
You can instantiate a table object without schema, in this case the schema will be inferred automatically based on the data
$table = new Table("tests/fixtures/data.csv"); $table->schema()->fields(); // ["first_name" => StringField, "last_name" => StringField, "order" => IntegerField]
It useful (and often used in other languages) to have this functionality ALSO not related to the Table class e.g. as:
Table
Schema::infer
The text was updated successfully, but these errors were encountered:
added in 3748750
Sorry, something went wrong.
No branches or pull requests
Overview
For now there is only one
infer
mention in readme. And it says:It useful (and often used in other languages) to have this functionality ALSO not related to the
Table
class e.g. as:Schema::infer
The text was updated successfully, but these errors were encountered: